summaryrefslogtreecommitdiff
path: root/src/ui/window.c
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2020-12-19 21:56:49 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2020-12-19 21:56:49 +0200
commitd69315ebec5e6ffc35d78ce7caf8d1559d6841c6 (patch)
treeabfcd51187f27fcdeda70312888ce489d8b678aa /src/ui/window.c
parent5889c90753f7763ca0ec841036f20eac6f39da7b (diff)
macOS: Adjusted menu items
Diffstat (limited to 'src/ui/window.c')
-rw-r--r--src/ui/window.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/window.c b/src/ui/window.c
index 5e346108..e1bb1c0b 100644
--- a/src/ui/window.c
+++ b/src/ui/window.c
@@ -162,7 +162,8 @@ static const iMenuItem viewMenuItems_[] = {
162 162
163static iMenuItem bookmarksMenuItems_[] = { 163static iMenuItem bookmarksMenuItems_[] = {
164 { "Bookmark This Page...", SDLK_d, KMOD_PRIMARY, "bookmark.add" }, 164 { "Bookmark This Page...", SDLK_d, KMOD_PRIMARY, "bookmark.add" },
165 { "Import All Links on Page", 0, 0, "bookmark.links confirm:1" }, 165 { "---", 0, 0, NULL },
166 { "Import All Links on Page...", 0, 0, "bookmark.links confirm:1" },
166 { "---", 0, 0, NULL }, 167 { "---", 0, 0, NULL },
167 { "List All", 0, 0, "open url:about:bookmarks" }, 168 { "List All", 0, 0, "open url:about:bookmarks" },
168 { "List by Tag", 0, 0, "open url:about:bookmarks?tags" }, 169 { "List by Tag", 0, 0, "open url:about:bookmarks?tags" },
@@ -170,7 +171,6 @@ static iMenuItem bookmarksMenuItems_[] = {
170 { "Refresh Remote Sources", 0, 0, "bookmarks.reload.remote" }, 171 { "Refresh Remote Sources", 0, 0, "bookmarks.reload.remote" },
171 { "---", 0, 0, NULL }, 172 { "---", 0, 0, NULL },
172 { "Subscribe to This Page...", subscribeToPage_KeyModifier, "feeds.subscribe" }, 173 { "Subscribe to This Page...", subscribeToPage_KeyModifier, "feeds.subscribe" },
173 { "---", 0, 0, NULL },
174 { "Show Feed Entries", 0, 0, "open url:about:feeds" }, 174 { "Show Feed Entries", 0, 0, "open url:about:feeds" },
175 { "Refresh Feeds", SDLK_r, KMOD_PRIMARY | KMOD_SHIFT, "feeds.refresh" }, 175 { "Refresh Feeds", SDLK_r, KMOD_PRIMARY | KMOD_SHIFT, "feeds.refresh" },
176}; 176};