mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-03-04 09:56:49 +00:00
Merge "Don't allow swiping to HintState if we're already in HintState" into tm-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
c012085c6c
@@ -86,7 +86,7 @@ public class NoButtonNavbarToOverviewTouchController extends PortraitStatesTouch
|
||||
@Override
|
||||
protected boolean canInterceptTouch(MotionEvent ev) {
|
||||
mDidTouchStartInNavBar = (ev.getEdgeFlags() & EDGE_NAV_BAR) != 0;
|
||||
return super.canInterceptTouch(ev);
|
||||
return super.canInterceptTouch(ev) && !mLauncher.isInState(HINT_STATE);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user