From 66b6e55d52167b3574c782e7ac1e8c50235cfc81 Mon Sep 17 00:00:00 2001 From: Liran Binyamin Date: Fri, 21 Mar 2025 10:23:52 -0400 Subject: Clean up unnecessary bubble task bounds update Now that we are merging the bubble task view transition with the unfold transition, we no longer need to force a delayed update to the task bounds. Not that it worked anyway... Bug: 390050545 Flag: EXEMPT bug fix Test: manual - turn bubblb bar flag off - create a floating bubble - request IME - unfold and observe expanded view Change-Id: I108e558c4e1311b11315ef42a6f27a4ea2a182cf --- .../Shell/src/com/android/wm/shell/bubbles/BubbleController.java | 9 --------- 1 file changed, 9 deletions(-) (limited to 'libs/WindowManager/Shell') diff --git a/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleController.java b/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleController.java index 63c4c6eb857a..7a2d493c4d42 100644 --- a/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleController.java +++ b/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleController.java @@ -1304,15 +1304,6 @@ public class BubbleController implements ConfigurationChangeListener, mContext.getResources().getDimensionPixelSize( com.android.internal.R.dimen.importance_ring_stroke_width)); mStackView.onDisplaySizeChanged(); - // TODO b/392893178: Merge the unfold and the task view transition so that we don't - // have to post a delayed runnable to the looper to update the bounds - if (mStackView.isExpanded()) { - mStackView.postDelayed(() -> { - if (mStackView != null) { - mStackView.updateExpandedView(); - } - } , 500); - } } if (newConfig.fontScale != mFontScale) { mFontScale = newConfig.fontScale; -- cgit v1.2.3-59-g8ed1b