Merge "Don't pulse LED on new notification unless notification has LED flag set" into ics-mr1

This commit is contained in:
Mike Lockwood
2012-02-14 11:30:05 -08:00
committed by Android (Google) Code Review

View File

@@ -767,7 +767,9 @@ public class NotificationManagerService extends INotificationManager.Stub
long identity = Binder.clearCallingIdentity();
try {
r.statusBarKey = mStatusBar.addNotification(n);
mAttentionLight.pulse();
if ((n.notification.flags & Notification.FLAG_SHOW_LIGHTS) != 0) {
mAttentionLight.pulse();
}
}
finally {
Binder.restoreCallingIdentity(identity);