diff --git a/packages/SystemUI/plugin/src/com/android/systemui/plugins/DarkIconDispatcher.java b/packages/SystemUI/plugin/src/com/android/systemui/plugins/DarkIconDispatcher.java index 757ed76eff369..b33c5449c1eb6 100644 --- a/packages/SystemUI/plugin/src/com/android/systemui/plugins/DarkIconDispatcher.java +++ b/packages/SystemUI/plugin/src/com/android/systemui/plugins/DarkIconDispatcher.java @@ -91,6 +91,9 @@ public interface DarkIconDispatcher { * areas, false otherwise */ static boolean isInAreas(ArrayList areas, View view) { + if (areas.isEmpty()) { + return true; + } for (Rect area : areas) { if (isInArea(area, view)) { return true;