commit | a2dd2d2b28475cba3ba7ab448b5bea813db3f42e | [log] [tgz] |
---|---|---|
author | Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> | Tue Sep 17 02:02:21 2024 +0000 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Tue Sep 17 02:02:21 2024 +0000 |
tree | 519b34242d758f9df48c03f04fa7ffb6b761f0bc | |
parent | 98d85d6dc09ea562176d732efc14d25fc215081f [diff] | |
parent | e736b9c0c5b4eccd378f4b7214aa927c935660f8 [diff] |
Merge "Fix an issue where the bubble bar was visible after theme change" into main
diff --git a/quickstep/src/com/android/launcher3/taskbar/bubbles/BubbleBarView.java b/quickstep/src/com/android/launcher3/taskbar/bubbles/BubbleBarView.java index 8eb6265..d454fd7 100644 --- a/quickstep/src/com/android/launcher3/taskbar/bubbles/BubbleBarView.java +++ b/quickstep/src/com/android/launcher3/taskbar/bubbles/BubbleBarView.java
@@ -689,7 +689,7 @@ } setAlphaDuringBubbleDrag(1f); setTranslationX(0f); - if (getBubbleChildCount() > 0) { + if (mIsBarExpanded && getBubbleChildCount() > 0) { setAlpha(1f); } }