From cac155a97c7d7bebf7c5d69a5dd6500ec38a4ecb Mon Sep 17 00:00:00 2001 From: Robert Fewell <14uBobIT@gmail.com> Date: Wed, 11 Dec 2019 15:13:08 +0000 Subject: [PATCH] Swap the buttons around on the Budget Open dialogue Swap the OK and Cancel buttons so they conform to the normal layout. --- gnucash/gnome/gnc-plugin-budget.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnucash/gnome/gnc-plugin-budget.c b/gnucash/gnome/gnc-plugin-budget.c index 6468b2b38e..0f767047f5 100644 --- a/gnucash/gnome/gnc-plugin-budget.c +++ b/gnucash/gnome/gnc-plugin-budget.c @@ -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);