From 9fc4fad24fdb63f82bc971313e0d223714834b31 Mon Sep 17 00:00:00 2001 From: mpodolian Date: Thu, 24 Oct 2024 11:24:07 -0700 Subject: [PATCH] Fixed icons overlapping issue. Removed early return condition from the Hotseat view Flag: com.android.wm.shell.enable_bubble_bar Test: Manual. Unfold foldable device and have bubble. Fold the device. Hotseat icons are not overlapped. Fixes: 375240372 Change-Id: I576c893896c98d2a0dcb25f64396f4e9fe62f61c --- src/com/android/launcher3/Hotseat.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/com/android/launcher3/Hotseat.java b/src/com/android/launcher3/Hotseat.java index 6b478be8ff..27602afa36 100644 --- a/src/com/android/launcher3/Hotseat.java +++ b/src/com/android/launcher3/Hotseat.java @@ -186,9 +186,6 @@ public class Hotseat extends CellLayout implements Insettable { */ public void adjustForBubbleBar(boolean isBubbleBarVisible) { DeviceProfile dp = mActivity.getDeviceProfile(); - if (!dp.shouldAdjustHotseatForBubbleBar(getContext(), isBubbleBarVisible)) { - return; - } ShortcutAndWidgetContainer icons = getShortcutsAndWidgets(); AnimatorSet animatorSet = new AnimatorSet();