mirror of https://github.com/GNOME/gimp.git
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:
parent
93399de7cd
commit
42750c25a7
|
@ -349,6 +349,7 @@ gimp_config_param_spec_duplicate (GParamSpec *pspec)
|
|||
g_strcmp0 (type_name, "GimpImage") == 0 ||
|
||||
g_strcmp0 (type_name, "GimpDrawable") == 0 ||
|
||||
g_strcmp0 (type_name, "GimpLayer") == 0 ||
|
||||
g_strcmp0 (type_name, "GimpChannel") == 0 ||
|
||||
g_strcmp0 (type_name, "GimpSelection") == 0 ||
|
||||
g_strcmp0 (type_name, "GimpVectors") == 0)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue