new hotkey: c l - create label

This commit is contained in:
Andrew Dolgov 2009-01-21 19:15:03 +01:00
parent 3e36a4f410
commit fc2732f48b
2 changed files with 6 additions and 1 deletions

View File

@ -27,7 +27,7 @@
<table>
<tr><td class='n'>[tab]</td><td><?php echo __("Select article under mouse cursor") ?></td></tr>
<tr><td class='n'>c l</td><td><?php echo __("Create label") ?></td></tr>
<tr><td class='n'>c f</td><td><?php echo __("Create filter") ?></td></tr>
<tr><td class='n'>c s</td><td><?php echo __("Collapse sidebar") ?></td></tr>
<tr><td class='n'>c m</td><td><?php echo __("Toggle category reordering mode") ?></td></tr>

View File

@ -1292,6 +1292,11 @@ function hotkey_handler(e) {
return false;
}
if (keycode == 76) { // l
addLabel();
return false;
}
if (keycode == 83) { // s
if (typeof collapse_feedlist != 'undefined') {
collapse_feedlist();