diff --git a/quickstep/src/com/android/launcher3/taskbar/bubbles/BubbleBarController.java b/quickstep/src/com/android/launcher3/taskbar/bubbles/BubbleBarController.java index db5e0d539f..b63cf02906 100644 --- a/quickstep/src/com/android/launcher3/taskbar/bubbles/BubbleBarController.java +++ b/quickstep/src/com/android/launcher3/taskbar/bubbles/BubbleBarController.java @@ -339,6 +339,7 @@ public class BubbleBarController extends IBubblesListener.Stub { // clear restored state mBubbleBarViewController.removeAllBubbles(); mBubbles.clear(); + mBubbleBarViewController.showOverflow(update.showOverflow); } BubbleBarBubble bubbleToSelect = null; diff --git a/quickstep/src/com/android/launcher3/taskbar/bubbles/BubbleBarViewController.java b/quickstep/src/com/android/launcher3/taskbar/bubbles/BubbleBarViewController.java index d00959eb67..569dd56cc6 100644 --- a/quickstep/src/com/android/launcher3/taskbar/bubbles/BubbleBarViewController.java +++ b/quickstep/src/com/android/launcher3/taskbar/bubbles/BubbleBarViewController.java @@ -1142,6 +1142,7 @@ public class BubbleBarViewController { /** Removes all existing bubble views */ public void removeAllBubbles() { + mOverflowAdded = false; mBarView.removeAllViews(); }