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

Commit

Permalink
bz-993078: Home/End keys not working in numerical text fields
Browse files Browse the repository at this point in the history
  • Loading branch information
jervisliu committed Sep 11, 2013
1 parent 3cee214 commit c0bea35
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -54,7 +54,10 @@ public void onKeyPress( KeyPressEvent event ) {
|| keyCode == KeyCodes.KEY_DELETE
|| keyCode == KeyCodes.KEY_LEFT
|| keyCode == KeyCodes.KEY_RIGHT
|| keyCode == KeyCodes.KEY_TAB ) {
|| keyCode == KeyCodes.KEY_TAB
|| keyCode == KeyCodes.KEY_HOME
|| keyCode == KeyCodes.KEY_END
) {
return;
}

Expand Down

0 comments on commit c0bea35

Please sign in to comment.