new hotkey: shift-C, toggle collapse feedlist
This commit is contained in:
parent
2f3d91c570
commit
08f3bb157a
1 changed files with 6 additions and 0 deletions
|
@ -329,6 +329,12 @@ function hotkey_handler(e) {
|
|||
}
|
||||
}
|
||||
|
||||
if (keycode == 67 && shift_key) { // c
|
||||
if (typeof collapse_feedlist != 'undefined') {
|
||||
return collapse_feedlist();
|
||||
}
|
||||
}
|
||||
|
||||
if (typeof localHotkeyHandler != 'undefined') {
|
||||
try {
|
||||
return localHotkeyHandler(e);
|
||||
|
|
Loading…
Reference in a new issue