new hotkey: c l - create label

master
Andrew Dolgov 16 years ago
parent 3e36a4f410
commit fc2732f48b

@ -27,7 +27,7 @@
<table> <table>
<tr><td class='n'>[tab]</td><td><?php echo __("Select article under mouse cursor") ?></td></tr> <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 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 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> <tr><td class='n'>c m</td><td><?php echo __("Toggle category reordering mode") ?></td></tr>

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

Loading…
Cancel
Save