summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Winson Chung <winsonc@google.com> 2017-05-18 23:15:27 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2017-05-18 23:15:35 +0000
commit99a885b5d683b5a88982ebca5d9cd6b1887b79b6 (patch)
tree7b53db1e41b17546b2bbee495ba73c4a7ae19261
parent39d9ae20a6a28c44e613d79963f6bf1de452619a (diff)
parent9f69b78eb30d3f190146901ffbf9f7854cc09f60 (diff)
Merge "Workaround issue with pip overlay not hiding cleanly." into oc-dev
-rw-r--r--packages/SystemUI/src/com/android/systemui/pip/phone/PipMenuActivity.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/pip/phone/PipMenuActivity.java b/packages/SystemUI/src/com/android/systemui/pip/phone/PipMenuActivity.java
index fbb97b65f958..013b9ac70118 100644
--- a/packages/SystemUI/src/com/android/systemui/pip/phone/PipMenuActivity.java
+++ b/packages/SystemUI/src/com/android/systemui/pip/phone/PipMenuActivity.java
@@ -223,9 +223,9 @@ public class PipMenuActivity extends Activity {
protected void onUserLeaveHint() {
super.onUserLeaveHint();
- // If another task is starting on top of the menu, then finish it so that it can be
+ // If another task is starting on top of the menu, then hide and finish it so that it can be
// recreated on the top next time it starts
- finish();
+ hideMenu();
}
@Override