From 0ebd184808ec0455abecf8a588540184db49e86b Mon Sep 17 00:00:00 2001 From: Cameron White Date: Tue, 19 Dec 2023 15:08:41 -0500 Subject: [PATCH] Fix incorrect button order in the Curves dialog This was broken from the GTK4 port Fixes: #2046967 --- Pinta.Effects/Dialogs/Effects.CurvesDialog.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Pinta.Effects/Dialogs/Effects.CurvesDialog.cs b/Pinta.Effects/Dialogs/Effects.CurvesDialog.cs index 4e1f008f1..8ca584b6d 100644 --- a/Pinta.Effects/Dialogs/Effects.CurvesDialog.cs +++ b/Pinta.Effects/Dialogs/Effects.CurvesDialog.cs @@ -126,9 +126,9 @@ public CurvesDialog (CurvesData effectData) check_red = new CheckButton () { Label = Translations.GetString ("Red "), Active = true }; check_green = new CheckButton () { Label = Translations.GetString ("Green"), Active = true }; check_blue = new CheckButton () { Label = Translations.GetString ("Blue "), Active = true }; - hbox2.Prepend (check_red); - hbox2.Prepend (check_green); hbox2.Prepend (check_blue); + hbox2.Prepend (check_green); + hbox2.Prepend (check_red); button_reset = new Button () { WidthRequest = 81,