diff options
author | Romain Guy <romainguy@android.com> | 2009-06-17 10:28:43 -0700 |
---|---|---|
committer | Romain Guy <romainguy@android.com> | 2009-06-17 10:28:43 -0700 |
commit | c665672acb7b907aefcc8b07452f5d06824a3469 (patch) | |
tree | 584c2ed000dfcc18f325a909582b6d3f3e3cf43d | |
parent | ded9ec91f6623d2566e1b2439ab302b6451e1657 (diff) | |
download | packages_apps_trebuchet-c665672acb7b907aefcc8b07452f5d06824a3469.zip packages_apps_trebuchet-c665672acb7b907aefcc8b07452f5d06824a3469.tar.gz packages_apps_trebuchet-c665672acb7b907aefcc8b07452f5d06824a3469.tar.bz2 |
Fix handling of the back key on Home in the gestures panel.
Previously, pressing back in a dialog on top of the gestures panel would
always dismiss the gestures panel. This is because the UP event for the
BACK key is sent to the underlying window after dismissing a dialog.
This fix simply checks for DOWN events only.
-rw-r--r-- | src/com/android/launcher/GesturesPanel.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/com/android/launcher/GesturesPanel.java b/src/com/android/launcher/GesturesPanel.java index ee39613..33dc102 100644 --- a/src/com/android/launcher/GesturesPanel.java +++ b/src/com/android/launcher/GesturesPanel.java @@ -37,8 +37,11 @@ public class GesturesPanel extends RelativeLayout { @Override public boolean dispatchKeyEvent(KeyEvent event) { - if (event.getKeyCode() == KeyEvent.KEYCODE_BACK) { + if (event.getKeyCode() == KeyEvent.KEYCODE_BACK && + event.getAction() == KeyEvent.ACTION_DOWN) { + ((Launcher) mContext).hideGesturesPanel(); + return true; } |