plug-ins: fix a glitch in the script-fu unique argument name logic

This commit is contained in:
Michael Natterer 2019-09-02 19:31:15 +02:00
parent ff1663b559
commit add31e2976
1 changed files with 7 additions and 3 deletions

View File

@ -264,14 +264,18 @@ script_fu_script_install_proc (GimpPlugIn *plug_in,
break;
case SF_STRING:
case SF_TEXT:
name = "string";
nick = "String";
break;
case SF_TEXT:
name = "text";
nick = "Text";
break;
case SF_ADJUSTMENT:
name = "value";
nick = "Value";
name = "adjustment";
nick = "Adjustment";
break;
case SF_FILENAME: