Skip to content

Commit

Permalink
Fix incorrect button order in the Curves dialog
Browse files Browse the repository at this point in the history
This was broken from the GTK4 port

Fixes: #2046967
  • Loading branch information
cameronwhite committed Dec 19, 2023
1 parent 715db6e commit 0ebd184
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Pinta.Effects/Dialogs/Effects.CurvesDialog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 0ebd184

Please sign in to comment.