diff options
| author | 2020-09-02 17:56:25 +0000 | |
|---|---|---|
| committer | 2020-09-02 17:56:25 +0000 | |
| commit | 9cdf5f78f03afe0ebe84ee5f85ed14f77db0a056 (patch) | |
| tree | 5371799ae2760c6150a433dac0d44e302b90c115 | |
| parent | 148a9925fc45a3ba961947212e8abdb9ee4675d0 (diff) | |
| parent | 417cfbce93aed8db2a56b0e900f36e8e11683649 (diff) | |
Merge "Disable launching bubble tasks in MW windowing mode until task org"
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/bubbles/BubbleExpandedView.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/bubbles/BubbleExpandedView.java b/packages/SystemUI/src/com/android/systemui/bubbles/BubbleExpandedView.java index 80150c9b7e32..33310962a6f2 100644 --- a/packages/SystemUI/src/com/android/systemui/bubbles/BubbleExpandedView.java +++ b/packages/SystemUI/src/com/android/systemui/bubbles/BubbleExpandedView.java @@ -164,7 +164,7 @@ public class BubbleExpandedView extends LinearLayout { ActivityOptions options = ActivityOptions.makeCustomAnimation(getContext(), 0 /* enterResId */, 0 /* exitResId */); options.setTaskAlwaysOnTop(true); - options.setLaunchWindowingMode(WINDOWING_MODE_MULTI_WINDOW); + // Soptions.setLaunchWindowingMode(WINDOWING_MODE_MULTI_WINDOW); // Post to keep the lifecycle normal post(() -> { if (DEBUG_BUBBLE_EXPANDED_VIEW) { |