Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 001e5242 authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change Icccbd889 into eclair

* changes:
  Fix broken handling of the BACK key in PopupWindow. Needed by Launcher2.
parents ca203475 9a583c1b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1328,7 +1328,7 @@ public class PopupWindow {
                    getKeyDispatcherState().startTracking(event, this);
                    return true;
                } else if (event.getAction() == KeyEvent.ACTION_UP
                        && event.isTracking() && !event.isCanceled()) {
                        && getKeyDispatcherState().isTracking(event) && !event.isCanceled()) {
                    dismiss();
                    return true;
                }