summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Vadim Tryshev <vadimt@google.com> 2015-08-14 08:14:11 -0700
committer Vadim Tryshev <vadimt@google.com> 2015-08-14 15:16:30 +0000
commitcfdc2f57f23a0774078a220bf2c11bedb0b61d30 (patch)
tree74855e2cc30db81dae1755b110ceb35d05a8e466
parentef00638754aeb897c1e80cb599ffe53b6a8cd98a (diff)
Not showing excluded tasks in Recents.
Now not showing strange tasks, such as crash popups, in Shelf Recents. Bug: 20024603 Change-Id: Iccd230fa78baf447db3d93bf408c39a7d811661b
-rw-r--r--packages/SystemUI/src/com/android/systemui/statusbar/phone/NavigationBarRecents.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/NavigationBarRecents.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/NavigationBarRecents.java
index eaa1c20c9b0c..cbf7227dbed2 100644
--- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/NavigationBarRecents.java
+++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/NavigationBarRecents.java
@@ -88,8 +88,7 @@ class NavigationBarRecents extends LinearLayout {
MAX_RECENTS,
ActivityManager.RECENT_IGNORE_HOME_STACK_TASKS |
ActivityManager.RECENT_IGNORE_UNAVAILABLE |
- ActivityManager.RECENT_INCLUDE_PROFILES |
- ActivityManager.RECENT_WITH_EXCLUDED,
+ ActivityManager.RECENT_INCLUDE_PROFILES,
UserHandle.USER_CURRENT);
if (DEBUG) Slog.d(TAG, "Got recents " + recentTasks.size());
removeMissingRecents(recentTasks);