From: Andrew Dolgov Date: Fri, 30 Nov 2018 21:20:09 +0000 (+0300) Subject: enable c-up/down hotkeys even out of cdm X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;ds=inline;h=bf1b89d0f1f430dcdda0879ebcf5e88f882c2ddd;p=tt-rss.git enable c-up/down hotkeys even out of cdm --- diff --git a/include/functions.php b/include/functions.php index 9125df3b..a30a3cf4 100755 --- a/include/functions.php +++ b/include/functions.php @@ -1249,10 +1249,8 @@ "^(191)|Ctrl+/" => "help_dialog", ); - if (get_pref('COMBINED_DISPLAY_MODE')) { - $hotkeys["^(38)|Ctrl-up"] = "prev_article_noscroll"; - $hotkeys["^(40)|Ctrl-down"] = "next_article_noscroll"; - } + $hotkeys["^(38)|Ctrl-up"] = "prev_article_noscroll"; + $hotkeys["^(40)|Ctrl-down"] = "next_article_noscroll"; foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_HOTKEY_MAP) as $plugin) { $hotkeys = $plugin->hook_hotkey_map($hotkeys);