diff options
| author | 2016-05-16 22:38:22 +0000 | |
|---|---|---|
| committer | 2016-05-16 22:38:23 +0000 | |
| commit | 174aa3346c06341d13f287c72ccd9ec47fce5987 (patch) | |
| tree | 33c8ef45090c5bec4bd4da5c93082ab6da8e5786 | |
| parent | 8e30eb3a7f81729065bad6d971bf414f995410df (diff) | |
| parent | 9df42a37c3bfe15f6515228f4a2c4f2f31c7978c (diff) | |
Merge "Workaround that Recents is shown again after an activity is PIPed" into nyc-dev
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/recents/tv/RecentsTvActivity.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/recents/tv/RecentsTvActivity.java b/packages/SystemUI/src/com/android/systemui/recents/tv/RecentsTvActivity.java index 3a17d222bda8..99c821131e56 100644 --- a/packages/SystemUI/src/com/android/systemui/recents/tv/RecentsTvActivity.java +++ b/packages/SystemUI/src/com/android/systemui/recents/tv/RecentsTvActivity.java @@ -413,6 +413,9 @@ public class RecentsTvActivity extends Activity implements OnPreDrawListener { RecentsConfiguration config = Recents.getConfiguration(); RecentsActivityLaunchState launchState = config.getLaunchState(); launchState.reset(); + + // Workaround for b/28333917. + finish(); } @Override |