summaryrefslogtreecommitdiffstats
path: root/services/java/com/android/server/NotificationManagerService.java
diff options
context:
space:
mode:
Diffstat (limited to 'services/java/com/android/server/NotificationManagerService.java')
-rw-r--r--services/java/com/android/server/NotificationManagerService.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/services/java/com/android/server/NotificationManagerService.java b/services/java/com/android/server/NotificationManagerService.java
index 8207146..7534070 100644
--- a/services/java/com/android/server/NotificationManagerService.java
+++ b/services/java/com/android/server/NotificationManagerService.java
@@ -42,6 +42,7 @@ import android.media.AudioManager;
import android.net.Uri;
import android.os.BatteryManager;
import android.os.Binder;
+import android.os.Build;
import android.os.Handler;
import android.os.IBinder;
import android.os.Message;
@@ -1396,6 +1397,7 @@ class NotificationManagerService extends INotificationManager.Stub {
}
private void updateRGBLightsLocked() {
+ boolean SHOLES_DEVICE = Build.DEVICE.contains("sholes");
int mPulseScreen = Settings.System.getInt(mContext.getContentResolver(),
Settings.System.TRACKBALL_SCREEN_ON, 0);
int mSuccession = Settings.System.getInt(mContext.getContentResolver(),
@@ -1413,6 +1415,10 @@ class NotificationManagerService extends INotificationManager.Stub {
mPulseAllColor = 0;
}
+ if (SHOLES_DEVICE) {
+ mBlendColor = 0;
+ }
+
// Battery low always shows, other states only show if charging.
if (mBatteryLow) {
if (mBatteryCharging) {