commit | 13b8159e9037d431dd5159635aa409116fa42562 | [log] [tgz] |
---|---|---|
author | Dan Sandler <dsandler@android.com> | Thu Jul 24 14:00:01 2014 -0400 |
committer | Dan Sandler <dsandler@android.com> | Fri Jul 25 13:36:37 2014 +0000 |
tree | 1e934170266043b35c468f7d6ad73df188d63e50 | |
parent | 2daf7a056d083e09eba4b437ef9ef8f5616e33c0 [diff] |
Do not colorize bare notification icons in the overflow. Change-Id: I3377a7d6024e495172a5ccefde1beaa46ec88283
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/NotificationOverflowIconsView.java b/packages/SystemUI/src/com/android/systemui/statusbar/NotificationOverflowIconsView.java index ce5ab5a..c75bd28 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/NotificationOverflowIconsView.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/NotificationOverflowIconsView.java
@@ -65,13 +65,7 @@ } private void applyColor(Notification notification, StatusBarIconView view) { - if (notification.color == Notification.COLOR_DEFAULT) { - if (mNotificationColorUtil.isGrayscale(view.getDrawable())) { - view.setColorFilter(mTintColor, PorterDuff.Mode.MULTIPLY); - } - } else { - view.setColorFilter(notification.color, PorterDuff.Mode.SRC_ATOP); - } + view.setColorFilter(mTintColor, PorterDuff.Mode.MULTIPLY); } private void updateMoreText() {