1
1
mirror of https://gitlab.gnome.org/GNOME/gimp.git synced 2025-10-06 01:12:40 +02:00

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.
This commit is contained in:
Alx Sa
2025-07-26 16:08:03 +00:00
parent db8ead54f8
commit f99415c281

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