summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-02-25 11:05:03 +0100
committerAndrew Dolgov <[email protected]>2007-02-25 11:05:03 +0100
commit57c9393e7518c14bbb46366aafd9735feee3b67c (patch)
tree2a89bf09c2123fffcbed8551a12cd726b922074f
parentb4c27af79aa9924b31959153622032d3c83ddc82 (diff)
change c, z hotkeys to shift-f, shift-p (collides with app-c and such)
-rw-r--r--functions.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/functions.js b/functions.js
index de88e4e49..292612919 100644
--- a/functions.js
+++ b/functions.js
@@ -257,17 +257,17 @@ function hotkey_handler(e) {
viewFeedGoPage(0);
}
- if (keycode == 69 && shift_key) {
+ if (keycode == 69 && shift_key) { // e
return editFeedDlg(getActiveFeedId());
}
- if (keycode == 67) { // c
+ if (keycode == 70 && shift_key) { // f
if (getActiveFeedId()) {
return catchupCurrentFeed();
}
}
- if (keycode == 90) { // z
+ if (keycode == 80 && shift_key) { // p
if (getActiveFeedId()) {
return catchupPage();
}