[four-in-a-row] Fixes #8: moved preferances to last section



commit 08ac49d52f43975ffcc5840214663bd75026f06c
Author: Jacob Humphrey <jacob ryan humphrey gmail com>
Date:   Fri Dec 21 15:49:56 2018 -0600

    Fixes #8: moved preferances to last section

 src/four-in-a-row.vala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/src/four-in-a-row.vala b/src/four-in-a-row.vala
index e00a2a5..5bcab82 100644
--- a/src/four-in-a-row.vala
+++ b/src/four-in-a-row.vala
@@ -740,9 +740,9 @@ class FourInARow : Gtk.Application {
         section = new GLib.Menu();
         app_menu.append_section(null, section);
         section.append(_("_Scores"), "app.scores");
-        section.append(_("_Preferences"), "app.preferences");
         section = new GLib.Menu();
         app_menu.append_section(null, section);
+               section.append(_("_Preferences"), "app.preferences");
         section.append(_("_Help"), "app.help");
         section.append(_("_About Four-In-A-Row"), "app.about");
 


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