diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2020-11-25 22:13:41 +0200 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2020-11-25 22:13:41 +0200 |
commit | feac9ab1c7f33aced1801bc2810563cb94d9bc5b (patch) | |
tree | 36560418a6812d5360b7cdcba02fa3ca83b6d3ff /src/ui | |
parent | f35016f3ed7663fb61d7ac7dd1cf772089a39867 (diff) |
Feeds: Check for update interval at launch
Diffstat (limited to 'src/ui')
-rw-r--r-- | src/ui/util.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ui/util.c b/src/ui/util.c index 541cf5d6..ef88d989 100644 --- a/src/ui/util.c +++ b/src/ui/util.c | |||
@@ -368,6 +368,7 @@ iWidget *addAction_Widget(iWidget *parent, int key, int kmods, const char *comma | |||
368 | 368 | ||
369 | static iBool isCommandIgnoredByMenus_(const char *cmd) { | 369 | static iBool isCommandIgnoredByMenus_(const char *cmd) { |
370 | return equal_Command(cmd, "media.updated") || equal_Command(cmd, "media.player.update") || | 370 | return equal_Command(cmd, "media.updated") || equal_Command(cmd, "media.player.update") || |
371 | startsWith_CStr(cmd, "feeds.update.") || | ||
371 | equal_Command(cmd, "document.request.updated") || equal_Command(cmd, "window.resized") || | 372 | equal_Command(cmd, "document.request.updated") || equal_Command(cmd, "window.resized") || |
372 | (equal_Command(cmd, "mouse.clicked") && !arg_Command(cmd)); /* button released */ | 373 | (equal_Command(cmd, "mouse.clicked") && !arg_Command(cmd)); /* button released */ |
373 | } | 374 | } |