new hotkey: shift-E - edit current feed

This commit is contained in:
Andrew Dolgov 2006-12-05 10:19:59 +01:00
parent 729bafaa14
commit e46cdbb0dd
1 changed files with 4 additions and 0 deletions

View File

@ -237,6 +237,10 @@ function hotkey_handler(e) {
debug_mode_enabled = !debug_mode_enabled;
}
if (keycode == 69 && shift_key) {
return editFeedDlg(getActiveFeedId());
}
if (typeof localHotkeyHandler != 'undefined') {
try {
return localHotkeyHandler(e);