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

Commit 9a583c1b authored by Romain Guy's avatar Romain Guy
Browse files

Fix broken handling of the BACK key in PopupWindow. Needed by Launcher2.

Change-Id: Icccbd8897186d0b9348a40b3dfc19ab7ac389efd
parent b9c40a65
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;
                }