From 9825281af6cdcdac7d27ba5ae3f10429c15f576d Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Fri, 20 Nov 2009 15:42:50 +0100 Subject: GUI: reorder question_dialog buttons --- src/Gui/CC_gui_functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gui/CC_gui_functions.py b/src/Gui/CC_gui_functions.py index 86ca54e..511e4bc 100644 --- a/src/Gui/CC_gui_functions.py +++ b/src/Gui/CC_gui_functions.py @@ -144,8 +144,8 @@ def gui_question_dialog ( message, parent_dialog=None, message_type, gtk.BUTTONS_NONE, message ) dialog.add_button("gtk-cancel", gtk.RESPONSE_CANCEL) - dialog.add_button("gtk-yes", gtk.RESPONSE_YES) dialog.add_button("gtk-no", gtk.RESPONSE_NO) + dialog.add_button("gtk-yes", gtk.RESPONSE_YES) dialog.set_markup(message) if parent_dialog: dialog.set_position (gtk.WIN_POS_CENTER_ON_PARENT) -- cgit