summaryrefslogtreecommitdiff
path: root/src/ui/window.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/window.c')
-rw-r--r--src/ui/window.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/ui/window.c b/src/ui/window.c
index b400dced..086ab86e 100644
--- a/src/ui/window.c
+++ b/src/ui/window.c
@@ -195,6 +195,7 @@ static const iMenuItem navMenuItems_[] = {
195 { "${menu.openlocation}", SDLK_l, KMOD_PRIMARY, "navigate.focus" }, 195 { "${menu.openlocation}", SDLK_l, KMOD_PRIMARY, "navigate.focus" },
196 { "---", 0, 0, NULL }, 196 { "---", 0, 0, NULL },
197 { download_Icon " " saveToDownloads_Label, SDLK_s, KMOD_PRIMARY, "document.save" }, 197 { download_Icon " " saveToDownloads_Label, SDLK_s, KMOD_PRIMARY, "document.save" },
198 { "${menu.downloads}", 0, 0, "downloads.open" },
198 { "${menu.page.copysource}", SDLK_c, KMOD_PRIMARY, "copy" }, 199 { "${menu.page.copysource}", SDLK_c, KMOD_PRIMARY, "copy" },
199 { "---", 0, 0, NULL }, 200 { "---", 0, 0, NULL },
200 { leftHalf_Icon " ${menu.sidebar.left}", SDLK_l, KMOD_PRIMARY | KMOD_SHIFT, "sidebar.toggle" }, 201 { leftHalf_Icon " ${menu.sidebar.left}", SDLK_l, KMOD_PRIMARY | KMOD_SHIFT, "sidebar.toggle" },
@@ -227,7 +228,8 @@ static const iMenuItem tabletNavMenuItems_[] = {
227 { "---", 0, 0, NULL }, 228 { "---", 0, 0, NULL },
228 { book_Icon " ${menu.bookmarks.list}", 0, 0, "!open url:about:bookmarks" }, 229 { book_Icon " ${menu.bookmarks.list}", 0, 0, "!open url:about:bookmarks" },
229 { "${menu.bookmarks.bytag}", 0, 0, "!open url:about:bookmarks?tags" }, 230 { "${menu.bookmarks.bytag}", 0, 0, "!open url:about:bookmarks?tags" },
230 { "${menu.bookmarks.bytime}", 0, 0, "!open url:about:feeds" }, 231 { "${menu.feeds.entrylist}", 0, 0, "!open url:about:feeds" },
232 { "${menu.downloads}", 0, 0, "downloads.open" },
231 { "---", 0, 0, NULL }, 233 { "---", 0, 0, NULL },
232 { gear_Icon " ${menu.preferences}", SDLK_COMMA, KMOD_PRIMARY, "preferences" }, 234 { gear_Icon " ${menu.preferences}", SDLK_COMMA, KMOD_PRIMARY, "preferences" },
233 { "${menu.help}", SDLK_F1, 0, "!open url:about:help" }, 235 { "${menu.help}", SDLK_F1, 0, "!open url:about:help" },
@@ -244,6 +246,7 @@ static const iMenuItem phoneNavMenuItems_[] = {
244 { "---", 0, 0, NULL }, 246 { "---", 0, 0, NULL },
245 { book_Icon " ${menu.bookmarks.list}", 0, 0, "!open url:about:bookmarks" }, 247 { book_Icon " ${menu.bookmarks.list}", 0, 0, "!open url:about:bookmarks" },
246 { "${menu.feeds.entrylist}", 0, 0, "!open url:about:feeds" }, 248 { "${menu.feeds.entrylist}", 0, 0, "!open url:about:feeds" },
249 { "${menu.downloads}", 0, 0, "downloads.open" },
247 { "---", 0, 0, NULL }, 250 { "---", 0, 0, NULL },
248 { gear_Icon " Settings...", SDLK_COMMA, KMOD_PRIMARY, "preferences" }, 251 { gear_Icon " Settings...", SDLK_COMMA, KMOD_PRIMARY, "preferences" },
249}; 252};
@@ -257,6 +260,8 @@ static const iMenuItem fileMenuItems_[] = {
257 { "${menu.openlocation}", SDLK_l, KMOD_PRIMARY, "navigate.focus" }, 260 { "${menu.openlocation}", SDLK_l, KMOD_PRIMARY, "navigate.focus" },
258 { "---", 0, 0, NULL }, 261 { "---", 0, 0, NULL },
259 { saveToDownloads_Label, SDLK_s, KMOD_PRIMARY, "document.save" }, 262 { saveToDownloads_Label, SDLK_s, KMOD_PRIMARY, "document.save" },
263 { "---", 0, 0, NULL },
264 { "${menu.downloads}", 0, 0, "downloads.open" },
260}; 265};
261 266
262static const iMenuItem editMenuItems_[] = { 267static const iMenuItem editMenuItems_[] = {