1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-16 08:05:57 +00:00

change t hotkey to T

This commit is contained in:
Andrew Dolgov
2008-05-17 14:39:29 +01:00
parent 60d4df4dbe
commit 5cf0cc5df5
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@
<tr><td class='n'>s</td><td><?php echo __("Toggle starred") ?></td></tr> <tr><td class='n'>s</td><td><?php echo __("Toggle starred") ?></td></tr>
<tr><td class='n'>shift-S</td><td><?php echo __("Toggle published") ?></td></tr> <tr><td class='n'>shift-S</td><td><?php echo __("Toggle published") ?></td></tr>
<tr><td class='n'>u</td><td><?php echo __("Toggle unread") ?></td></tr> <tr><td class='n'>u</td><td><?php echo __("Toggle unread") ?></td></tr>
<tr><td class='n'>t</td><td><?php echo __("Edit tags") ?></td></tr> <tr><td class='n'>T</td><td><?php echo __("Edit tags") ?></td></tr>
<tr><td class='n'>o</td><td><?php echo __("Open article in new window") ?></td></tr> <tr><td class='n'>o</td><td><?php echo __("Open article in new window") ?></td></tr>
</table> </table>

View File

@@ -1145,7 +1145,7 @@ function hotkey_handler(e) {
return viewfeed(-3); return viewfeed(-3);
} }
if (keycode == 84) { // t if (keycode == 84 && shift_key) { // T
toggleTags(); toggleTags();
} }