Merge "Workspace should not receive touch events" into tm-dev

This commit is contained in:
Hyunyoung Song
2022-06-13 16:30:19 +00:00
committed by Android (Google) Code Review

View File

@@ -304,6 +304,10 @@ public abstract class BaseAllAppsContainerView<T extends Context & ActivityConte
mTouchHandler.handleTouchEvent(ev, mFastScrollerOffset);
return true;
}
if (isSearching()) {
// if in search state, consume touch event.
return true;
}
return false;
}