Swap the buttons around on the Budget Open dialogue

Swap the OK and Cancel buttons so they conform to the normal layout.
This commit is contained in:
Robert Fewell 2019-12-11 15:13:08 +00:00
parent 8e155bfccf
commit cac155a97c

View File

@ -289,8 +289,8 @@ gnc_budget_gui_select_budget (GtkWindow *parent, QofBook *book)
dlg = GTK_DIALOG(gtk_dialog_new_with_buttons (
_("Select a Budget"), parent, GTK_DIALOG_MODAL,
_("_OK"), GTK_RESPONSE_OK,
_("_Cancel"), GTK_RESPONSE_CANCEL, NULL));
_("_Cancel"), GTK_RESPONSE_CANCEL,
_("_OK"), GTK_RESPONSE_OK, NULL));
tv = GTK_TREE_VIEW(gtk_tree_view_new ());
sel = gtk_tree_view_get_selection (tv);