summaryrefslogtreecommitdiff
path: root/src/ui/window.c
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2020-11-27 14:35:54 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2020-11-27 14:35:54 +0200
commit6e8924cb5e95466cbdbe6c237365a8383c35b26b (patch)
treed5ced984200555684bc1f3843b4de45ae9dca725 /src/ui/window.c
parent54f063e859f8e7eb5c3a825763ed4c85d30ef5b5 (diff)
Feeds: Separate timestamps for posting and discovery
The discovery time is needed for knowing how long the entry can be retained in the history.
Diffstat (limited to 'src/ui/window.c')
-rw-r--r--src/ui/window.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ui/window.c b/src/ui/window.c
index 6e91d644..cdb122be 100644
--- a/src/ui/window.c
+++ b/src/ui/window.c
@@ -104,7 +104,8 @@ static const iMenuItem navMenuItems_[] = {
104 { "Save to Downloads", SDLK_s, KMOD_PRIMARY, "document.save" }, 104 { "Save to Downloads", SDLK_s, KMOD_PRIMARY, "document.save" },
105 { "---", 0, 0, NULL }, 105 { "---", 0, 0, NULL },
106 { "Copy Source Text", SDLK_c, KMOD_PRIMARY, "copy" }, 106 { "Copy Source Text", SDLK_c, KMOD_PRIMARY, "copy" },
107 { "Bookmark This Page", SDLK_d, KMOD_PRIMARY, "bookmark.add" }, 107 { "Bookmark Page", SDLK_d, KMOD_PRIMARY, "bookmark.add" },
108 { "Subscribe to Page", 0, 0, "bookmark.addtag tag:subscribed" },
108 { "---", 0, 0, NULL }, 109 { "---", 0, 0, NULL },
109 { "Toggle Sidebar", SDLK_l, KMOD_PRIMARY | KMOD_SHIFT, "sidebar.toggle" }, 110 { "Toggle Sidebar", SDLK_l, KMOD_PRIMARY | KMOD_SHIFT, "sidebar.toggle" },
110 { "Zoom In", SDLK_EQUALS, KMOD_PRIMARY, "zoom.delta arg:10" }, 111 { "Zoom In", SDLK_EQUALS, KMOD_PRIMARY, "zoom.delta arg:10" },