Merge branch 'fix-714' into 'mainline'

alert dialog: Align checkbutton to start, not end

Closes #714

See merge request GNOME/geary!417
This commit is contained in:
Michael Gratton 2020-03-01 11:32:55 +00:00
commit 4bb39aeb41

View file

@ -108,7 +108,6 @@ class QuestionDialog : AlertDialog {
checkbutton = new Gtk.CheckButton.with_mnemonic(checkbox_label);
checkbutton.active = checkbox_default;
checkbutton.halign = Gtk.Align.END;
checkbutton.toggled.connect(on_checkbox_toggled);
get_message_area().pack_start(checkbutton);