libgimpconfig: fix missing GimpChannel in gimp_config_param_spec_duplicate

Partial fix to issue 8062

Only fixing the part that I understand, that impedes enhancements to ScriptFu.
This commit is contained in:
lloyd konneker 2022-07-20 15:00:12 -04:00 committed by Jehan
parent 93399de7cd
commit 42750c25a7
1 changed files with 1 additions and 0 deletions

View File

@ -349,6 +349,7 @@ gimp_config_param_spec_duplicate (GParamSpec *pspec)
g_strcmp0 (type_name, "GimpImage") == 0 || g_strcmp0 (type_name, "GimpImage") == 0 ||
g_strcmp0 (type_name, "GimpDrawable") == 0 || g_strcmp0 (type_name, "GimpDrawable") == 0 ||
g_strcmp0 (type_name, "GimpLayer") == 0 || g_strcmp0 (type_name, "GimpLayer") == 0 ||
g_strcmp0 (type_name, "GimpChannel") == 0 ||
g_strcmp0 (type_name, "GimpSelection") == 0 || g_strcmp0 (type_name, "GimpSelection") == 0 ||
g_strcmp0 (type_name, "GimpVectors") == 0) g_strcmp0 (type_name, "GimpVectors") == 0)
{ {