diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-11-29 19:47:50 +0200 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-11-29 19:49:36 +0200 |
commit | 30e9a1534cf11eefa84c2cb8c3f3796a66c35532 (patch) | |
tree | 6ca94bef3dce3ab2d1e1ba353dcf6c0c2a2f47ec | |
parent | 8320401d3b32ef400072106eedb3c75367e1a12b (diff) |
Windows: Order of main menu items
Place the "Check for Updates" item immediately following Preferences,
like on macOS.
-rw-r--r-- | src/ui/root.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/root.c b/src/ui/root.c index f25dfbca..cf13169d 100644 --- a/src/ui/root.c +++ b/src/ui/root.c | |||
@@ -76,11 +76,11 @@ static const iMenuItem navMenuItems_[] = { | |||
76 | { "${menu.feeds.entrylist}", 0, 0, "!open url:about:feeds" }, | 76 | { "${menu.feeds.entrylist}", 0, 0, "!open url:about:feeds" }, |
77 | { "---" }, | 77 | { "---" }, |
78 | { gear_Icon " ${menu.preferences}", SDLK_COMMA, KMOD_PRIMARY, "preferences" }, | 78 | { gear_Icon " ${menu.preferences}", SDLK_COMMA, KMOD_PRIMARY, "preferences" }, |
79 | { "${menu.help}", SDLK_F1, 0, "!open url:about:help" }, | ||
80 | { "${menu.releasenotes}", 0, 0, "!open url:about:version" }, | ||
81 | #if defined (LAGRANGE_ENABLE_WINSPARKLE) | 79 | #if defined (LAGRANGE_ENABLE_WINSPARKLE) |
82 | { "${menu.update}", 0, 0, "updater.check" }, | 80 | { "${menu.update}", 0, 0, "updater.check" }, |
83 | #endif | 81 | #endif |
82 | { "${menu.help}", SDLK_F1, 0, "!open url:about:help" }, | ||
83 | { "${menu.releasenotes}", 0, 0, "!open url:about:version" }, | ||
84 | { "---" }, | 84 | { "---" }, |
85 | { "${menu.quit}", 'q', KMOD_PRIMARY, "quit" } | 85 | { "${menu.quit}", 'q', KMOD_PRIMARY, "quit" } |
86 | }; | 86 | }; |