plug-ins: Give unique IDs to file-svg choice parameter
Resolves #14557
Per Kamil Burda, all three choices for the "paths" parameter
in file-svg had an ID of 0. This patch makes them unique.
(cherry picked from commit f99415c281)
This commit is contained in:
parent
e64b528cd4
commit
3635a7cba1
1 changed files with 2 additions and 2 deletions
|
|
@ -189,8 +189,8 @@ svg_create_procedure (GimpPlugIn *plug_in,
|
|||
_("_Paths"),
|
||||
_("Whether and how to import paths so that they can be used with the path tool"),
|
||||
gimp_choice_new_with_values ("no-import", 0, _("Don't import paths"), NULL,
|
||||
"import", 0, _("Import paths individually"), NULL,
|
||||
"import-merged", 0, _("Merge imported paths"), NULL,
|
||||
"import", 1, _("Import paths individually"), NULL,
|
||||
"import-merged", 2, _("Merge imported paths"), NULL,
|
||||
NULL),
|
||||
"no-import", G_PARAM_READWRITE);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue