[gnome-sudoku] Reorder the buttons on the well done dialog



commit 742bf109de11ef0ed73bed7233267640cc5687e3
Author: Michael Catanzaro <mcatanzaro gnome org>
Date:   Tue Sep 8 19:46:12 2015 -0500

    Reorder the buttons on the well done dialog
    
    Affirmative goes on the right.
    
    Technically a UI freeze break, but this is very minor and doesn't affect
    docs on i18n.

 src/gnome-sudoku.vala |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/gnome-sudoku.vala b/src/gnome-sudoku.vala
index bc4e411..66f8053 100644
--- a/src/gnome-sudoku.vala
+++ b/src/gnome-sudoku.vala
@@ -423,8 +423,8 @@ public class Sudoku : Gtk.Application
                                      minutes).printf (minutes);
             var dialog = new MessageDialog (window, DialogFlags.DESTROY_WITH_PARENT, MessageType.INFO, 
ButtonsType.NONE, time_str);
 
-            dialog.add_button (_("Play _Again"), Gtk.ResponseType.ACCEPT);
             dialog.add_button (_("_Quit"), Gtk.ResponseType.REJECT);
+            dialog.add_button (_("Play _Again"), Gtk.ResponseType.ACCEPT);
 
             dialog.response.connect ((response_id) => {
                 if (response_id == Gtk.ResponseType.ACCEPT)


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]