Allow TouchControllers to override shouldDisableGestures

Currently only StatusBarTouchController overrides this to always return
false, so that you can swipe down for notifications during transition to
home screen from an app (in gesture nav).

Bug: 137161198
Change-Id: I803c37937d5294810cbe0c1bbffcd5dddcc5ca3b
This commit is contained in:
Tony Wickham
2019-07-18 14:38:46 -07:00
parent a160e2bc78
commit f33b6d4378
3 changed files with 15 additions and 5 deletions

View File

@@ -166,4 +166,10 @@ public class StatusBarTouchController implements TouchController {
mSysUiProxy = RecentsModel.INSTANCE.get(mLauncher).getSystemUiProxy();
return mSysUiProxy != null;
}
@Override
public boolean allowWhenGesturesDisabled() {
// Always allow intercepting touches for this controller.
return true;
}
}