[cheese] Reorder Help and About in the app menu
- From: David King <davidk src gnome org>
 
- To: commits-list gnome org
 
- Cc: 
 
- Subject: [cheese] Reorder Help and About in the app menu
 
- Date: Wed, 19 Jun 2013 18:15:07 +0000 (UTC)
 
commit b1cc8f4f8f3a7aebccebce9af1a3c63589db6ae0
Author: Ekaterina Gerasimova <kittykat3756 gmail com>
Date:   Wed Jun 19 18:38:27 2013 +0100
    Reorder Help and About in the app menu
    
    Move Help to be above About in the application menu so that it complies
    with the HIG.
 src/cheese-main.vala |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/cheese-main.vala b/src/cheese-main.vala
index 177b172..1b27c90 100644
--- a/src/cheese-main.vala
+++ b/src/cheese-main.vala
@@ -42,8 +42,8 @@ public class Cheese.Main : Gtk.Application
         { "fullscreen", on_action_toggle, null, "false", on_fullscreen_change },
         { "effects", on_action_toggle, null, "false", on_effects_change },
         { "preferences", on_preferences },
-        { "about", on_about },
         { "help", on_help },
+        { "about", on_about },
         { "quit", on_quit }
     };
 
@@ -110,10 +110,10 @@ public class Cheese.Main : Gtk.Application
             section.append (_("P_references"), "app.preferences");
             section = new GLib.Menu ();
             menu.append_section (null, section);
-            section.append (_("_About"), "app.about");
             item = new GLib.MenuItem (_("_Help"), "app.help");
             item.set_attribute ("accel", "s", "F1");
             section.append_item (item);
+            section.append (_("_About"), "app.about");
             item = new GLib.MenuItem (_("_Quit"), "app.quit");
             item.set_attribute ("accel", "s", "<Primary>q");
             section.append_item (item);
[
Date Prev][
Date Next]   [
Thread Prev][
Thread Next]   
[
Thread Index]
[
Date Index]
[
Author Index]