1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-15 04:15:57 +00:00

change hotkeys r and f u to R and r

This commit is contained in:
Andrew Dolgov
2008-05-17 16:00:48 +01:00
parent bd7ad16ce0
commit c239b26b3a
2 changed files with 9 additions and 3 deletions

View File

@@ -986,10 +986,16 @@ function hotkey_handler(e) {
return displayDlg("search", getActiveFeedId() + ":" + activeFeedIsCat());
}
if (keycode == 82) { // r
if (keycode == 82 && shift_key) { // R
return scheduleFeedUpdate(true);
}
if (keycode == 82) { // r
if (getActiveFeedId()) {
return viewfeed(getActiveFeedId(), "ForceUpdate");
}
}
if (keycode == 74) { // j
var feed = getActiveFeedId();
var new_feed = getRelativeFeedId(feedlist, feed, 'prev');