diff options
author | 2025-03-24 14:50:42 -0700 | |
---|---|---|
committer | 2025-03-24 14:50:42 -0700 | |
commit | 90a077a3cf6f435bfff6cfbb061ef7543c077751 (patch) | |
tree | c705fe1a42b3283288108e4cd62272f92d8961b5 | |
parent | af5fb404b1ddf80ba21ef05a6ee5b1ab2136d70b (diff) | |
parent | 66b6e55d52167b3574c782e7ac1e8c50235cfc81 (diff) |
Merge "Clean up unnecessary bubble task bounds update" into main
-rw-r--r-- | libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleController.java | 9 |
1 files changed, 0 insertions, 9 deletions
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 6a7b5cc0e1ba..750bf549ab97 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 @@ -1305,15 +1305,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; |