Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Add Alt+N keyboard shortcut to mark fuzzy
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesni committed Jun 10, 2011
1 parent ac80a4a commit f6d433a
Showing 1 changed file with 7 additions and 0 deletions.
Expand Up @@ -246,6 +246,13 @@ else if (event.isAltKeyDown() && event.getNativeKeyCode() == KeyCodes.KEY_PAGEUP
{ // alt-pageup
handlePrevState();
}
else if (event.isAltKeyDown() && event.getNativeKeyCode() == 78)
{
if (toggleFuzzy.getValue())
toggleFuzzy.setValue(false);
else
toggleFuzzy.setValue(true);
}
// these shortcuts disabled because they conflict with basic text editing:
// else if (event.isControlKeyDown() && event.getNativeKeyCode() == KeyCodes.KEY_HOME)
// { // ctrl-home
Expand Down

0 comments on commit f6d433a

Please sign in to comment.