From 9bbbc82c754859753115e7ae879c09b3ed647cad Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 4 Jun 2008 15:28:37 +0100 Subject: [PATCH] new hotkey x: un/collapse if viewing category --- help/3.php | 1 + tt-rss.js | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/help/3.php b/help/3.php index d24403cb..76c87c0d 100644 --- a/help/3.php +++ b/help/3.php @@ -45,6 +45,7 @@ f h q Q + x

diff --git a/tt-rss.js b/tt-rss.js index 2373826f..d917b6dc 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -1188,6 +1188,12 @@ function hotkey_handler(e) { } } } + + if (keycode == 88) { // x + if (activeFeedIsCat()) { + toggleCollapseCat(getActiveFeedId()); + } + } } /* Prefix f */ -- 2.39.2