From 7bebb1d36bbd803733fc6a2d250468a65cace986 Mon Sep 17 00:00:00 2001 From: Alx Sa Date: Thu, 19 Feb 2026 13:27:50 +0000 Subject: [PATCH] dialog: Reorder options to match dialog The Canvas Size dialogue and the default options for it in the Preferences dialogue were listed in opposite order. This patch puts them in the same order as the Canvas Size dialogue (Fill with, then Resize Layers) to keep them consistent. --- app/dialogs/preferences-dialog.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/dialogs/preferences-dialog.c b/app/dialogs/preferences-dialog.c index c886263e3e..5b58fb53d7 100644 --- a/app/dialogs/preferences-dialog.c +++ b/app/dialogs/preferences-dialog.c @@ -2431,11 +2431,11 @@ prefs_dialog_new (Gimp *gimp, GTK_CONTAINER (vbox), FALSE); grid = prefs_grid_new (GTK_CONTAINER (vbox2)); - prefs_enum_combo_box_add (object, "image-resize-fill-type", 0, 0, - _("Fill with:"), - GTK_GRID (grid), 0, size_group); prefs_enum_combo_box_add (object, "image-resize-layer-set", 0, 0, _("Resize layers:"), + GTK_GRID (grid), 0, size_group); + prefs_enum_combo_box_add (object, "image-resize-fill-type", 0, 0, + _("Fill with:"), GTK_GRID (grid), 1, size_group); prefs_check_button_add (object, "image-resize-resize-text-layers",