[gnome-klotski] Revert "Switch the two window buttons"



commit 7b0ec1dea72df5c7051fba91fdb96b801a1249cd
Author: Michael Catanzaro <mcatanzaro gnome org>
Date:   Sat Jun 28 18:41:40 2014 -0500

    Revert "Switch the two window buttons"
    
    This reverts commit 22351e5c13b2e9496febf4f1d220d7ff592e3263.
    
    This was kind of silly. The toggle button feels better on the bottom.

 src/gnome-klotski.vala |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/src/gnome-klotski.vala b/src/gnome-klotski.vala
index e65f46d..5bc0cbd 100644
--- a/src/gnome-klotski.vala
+++ b/src/gnome-klotski.vala
@@ -632,15 +632,15 @@ public class Klotski : Gtk.Application
         bbox.show ();
         hbox.pack_start (bbox, false, true, 15);
 
-        var button = new Gtk.Button.with_mnemonic (_("_Start Over"));
-        button.action_name = "app.new-game";
+        Gtk.Button button = new Gtk.ToggleButton.with_mnemonic (_("_View Puzzles"));
+        button.action_name = "app.show-puzzles";
         ((Gtk.Label) button.get_child ()).margin = 12;
         button.show ();
         sizegroup.add_widget (button);
         bbox.pack_end (button, false, true, 0);
 
-        button = new Gtk.ToggleButton.with_mnemonic (_("_View Puzzles"));
-        button.action_name = "app.show-puzzles";
+        button = new Gtk.Button.with_mnemonic (_("_Start Over"));
+        button.action_name = "app.new-game";
         ((Gtk.Label) button.get_child ()).margin = 12;
         button.show ();
         sizegroup.add_widget (button);


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