From 3929232cf9d17f81e4fc31004fef3deaa9096826 Mon Sep 17 00:00:00 2001 From: John Spurlock Date: Wed, 13 Aug 2014 11:00:59 -0400 Subject: [PATCH] Send LED signal up to SystemUI regardless of setting. Let it make an independent decision about whether or not to do anything with it. Bug:17001245 Change-Id: Ie494abec423f3620bf142ad332bb5f0a4d4341a5 --- .../server/notification/NotificationManagerService.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/services/core/java/com/android/server/notification/NotificationManagerService.java b/services/core/java/com/android/server/notification/NotificationManagerService.java index 3eb2b7e508a73..8e11f370a9668 100644 --- a/services/core/java/com/android/server/notification/NotificationManagerService.java +++ b/services/core/java/com/android/server/notification/NotificationManagerService.java @@ -2424,8 +2424,9 @@ public class NotificationManagerService extends SystemService { // pulse repeatedly mNotificationLight.setFlashing(ledARGB, Light.LIGHT_FLASH_TIMED, ledOnMS, ledOffMS); - mStatusBar.notificationLightPulse(ledARGB, ledOnMS, ledOffMS); } + // let SystemUI make an independent decision + mStatusBar.notificationLightPulse(ledARGB, ledOnMS, ledOffMS); } }