[gnome-sudoku] Reorder the buttons on the well done dialog
- From: Michael Catanzaro <mcatanzaro src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-sudoku] Reorder the buttons on the well done dialog
- Date: Wed, 9 Sep 2015 00:47:32 +0000 (UTC)
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]