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:
Alx Sa 2025-07-26 16:08:03 +00:00 committed by Jehan
parent e64b528cd4
commit 3635a7cba1

View file

@ -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);
}