[gnome-klotski/wip/mallard-help-merge: 4/92] Switch the two window buttons
- From: Ekaterina Gerasimova <egerasimov src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-klotski/wip/mallard-help-merge: 4/92] Switch the two window buttons
- Date: Sun, 25 Jan 2015 22:18:04 +0000 (UTC)
commit ee1db86aaedc55a395305cdd0596274f3d26795c
Author: Michael Catanzaro <mcatanzaro gnome org>
Date: Sat Jun 28 08:54:49 2014 -0500
Switch the two window buttons
Match the order used in Sudoku: New Game is "dominant" over clear board.
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 5bc0cbd..e65f46d 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);
- Gtk.Button button = new Gtk.ToggleButton.with_mnemonic (_("_View Puzzles"));
- button.action_name = "app.show-puzzles";
+ var 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);
bbox.pack_end (button, false, true, 0);
- button = new Gtk.Button.with_mnemonic (_("_Start Over"));
- button.action_name = "app.new-game";
+ 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);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]