summaryrefslogtreecommitdiffstats
path: root/services
diff options
context:
space:
mode:
authorJohn Spurlock <jspurlock@google.com>2014-08-13 15:11:30 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-08-12 23:14:48 +0000
commit55b0abd75c4fe61d293846f55c3d9fe834a4d15a (patch)
tree346cf89c1d28af021953223334fd6b2efba56f4d /services
parent72eb2ae21bc8d1788ffc4445b39ede87bc91cdc4 (diff)
parent3929232cf9d17f81e4fc31004fef3deaa9096826 (diff)
downloadframeworks_base-55b0abd75c4fe61d293846f55c3d9fe834a4d15a.zip
frameworks_base-55b0abd75c4fe61d293846f55c3d9fe834a4d15a.tar.gz
frameworks_base-55b0abd75c4fe61d293846f55c3d9fe834a4d15a.tar.bz2
Merge "Send LED signal up to SystemUI regardless of setting." into lmp-dev
Diffstat (limited to 'services')
-rw-r--r--services/core/java/com/android/server/notification/NotificationManagerService.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/services/core/java/com/android/server/notification/NotificationManagerService.java b/services/core/java/com/android/server/notification/NotificationManagerService.java
index 3eb2b7e..8e11f37 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);
}
}