Skip to content

Commit

Permalink
Make buttonbox homogeneous
Browse files Browse the repository at this point in the history
  • Loading branch information
danirabbit committed May 15, 2024
1 parent cd6d6e5 commit 202e248
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Widgets/TaskRow.vala
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,8 @@ public class Tasks.Widgets.TaskRow : Gtk.ListBoxRow {
buttons_size_group.add_widget (save_button);

var right_buttons_box = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 6) {
halign = Gtk.Align.END
halign = Gtk.Align.END,
homogeneous = true
};
right_buttons_box.append (cancel_button);
right_buttons_box.append (save_button);
Expand Down

0 comments on commit 202e248

Please sign in to comment.