mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-03-01 16:26:47 +00:00
Fix bug where QSB gets clipped when flinging All Apps open.
Bug: 77538324 Change-Id: I3e40346559fd3b7010d92d28e12efcf2d8581640
This commit is contained in:
@@ -314,7 +314,8 @@ public class AllAppsContainerView extends SpringRelativeLayout implements DragSo
|
||||
|
||||
@Override
|
||||
public int getCanvasClipTopForOverscroll() {
|
||||
return mHeader.getTop();
|
||||
// Do not clip if the QSB is attached to the spring, otherwise the QSB will get clipped.
|
||||
return mSpringViews.get(getSearchView().getId()) ? 0 : mHeader.getTop();
|
||||
}
|
||||
|
||||
private void rebindAdapters(boolean showTabs) {
|
||||
|
||||
Reference in New Issue
Block a user