From cb24ab8e59753e56d19d3aee78e80ec4d2723b75 Mon Sep 17 00:00:00 2001 From: Selim Cinek Date: Thu, 25 Feb 2016 12:49:08 -0800 Subject: [PATCH] Allowing to expand the children from the lockscreen now Bug: 24866646 Change-Id: Ibb4dc98e8148b912253153065c9c35e22a06f334 --- .../com/android/systemui/statusbar/phone/PhoneStatusBar.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java index e344df2bc2f22..c1996ab0e469c 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java @@ -4091,7 +4091,7 @@ public class PhoneStatusBar extends BaseStatusBar implements DemoMode, ExpandableNotificationRow row = null; if (expandView instanceof ExpandableNotificationRow) { row = (ExpandableNotificationRow) expandView; - row.setUserExpanded(true); + row.setUserExpanded(true /* userExpanded */, true /* allowChildExpansion */); } boolean fullShadeNeedsBouncer = !userAllowsPrivateNotificationsInPublic(mCurrentUserId) || !mShowLockscreenNotifications || mFalsingManager.shouldEnforceBouncer();