From fe619371bd8a6573ae3f7ab0792e5ef58fac90ad Mon Sep 17 00:00:00 2001 From: JianYang Liu Date: Mon, 27 Apr 2020 10:59:42 -0700 Subject: [PATCH] Fixed TopNotificationPanelViewMediator to register drag open listener on top bar. Bug: 145827692 Test: Manual Change-Id: I1ee8263ed46a89813330965cf6e91aa5590108bf --- .../car/notification/TopNotificationPanelViewMediator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/CarSystemUI/src/com/android/systemui/car/notification/TopNotificationPanelViewMediator.java b/packages/CarSystemUI/src/com/android/systemui/car/notification/TopNotificationPanelViewMediator.java index 09a462185dac7..8d3eb4c2bbeed 100644 --- a/packages/CarSystemUI/src/com/android/systemui/car/notification/TopNotificationPanelViewMediator.java +++ b/packages/CarSystemUI/src/com/android/systemui/car/notification/TopNotificationPanelViewMediator.java @@ -53,7 +53,7 @@ public class TopNotificationPanelViewMediator extends NotificationPanelViewMedia @Override public void registerListeners() { super.registerListeners(); - getCarNavigationBarController().registerBottomBarTouchListener( + getCarNavigationBarController().registerTopBarTouchListener( getNotificationPanelViewController().getDragOpenTouchListener()); } }