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

Commit

Permalink
Merge branch '1.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmason committed Aug 12, 2011
2 parents 8930790 + 388e1ea commit f8ae93c
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,7 @@ public void onKeyDown(KeyDownEvent event)
//using keydown for Ctrl+S in order to override browser Ctrl+S on keydown (chrome)
if (event.isControlKeyDown() && keyCode == KEY_S)
{
event.stopPropagation();
event.preventDefault(); //stop browser save
saveAsFuzzy();
}
Expand Down

0 comments on commit f8ae93c

Please sign in to comment.