From 3635a7cba121ae77fd39a9e6fe2c04f3eccee232 Mon Sep 17 00:00:00 2001 From: Alx Sa Date: Sat, 26 Jul 2025 16:08:03 +0000 Subject: [PATCH] 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 f99415c28198318f2824df7105468f2629dec278) --- plug-ins/common/file-svg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plug-ins/common/file-svg.c b/plug-ins/common/file-svg.c index dd2356457d..39cab39e11 100644 --- a/plug-ins/common/file-svg.c +++ b/plug-ins/common/file-svg.c @@ -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); }