1
0
mirror of synced 2025-02-03 21:59:24 +03:00

Adding tab support for tags

When you select a tag currently the only way to select it was by using the enter key. This change allows the tab key to also select it.

Signed-off-by: Eric Barnes <eric@ericlbarnes.com>
This commit is contained in:
Eric Barnes 2012-05-22 09:30:10 -04:00
parent 058ecae750
commit 66b789939f

View File

@ -1122,6 +1122,7 @@
killEvent(e);
return;
case KEY.ENTER:
case KEY.TAB:
this.selectHighlighted();
killEvent(e);
return;