summaryrefslogtreecommitdiffstats
path: root/packages/SystemUI
diff options
context:
space:
mode:
authorJason Monk <jmonk@google.com>2015-07-08 12:09:52 -0400
committerJason Monk <jmonk@google.com>2015-07-08 12:09:52 -0400
commit7d0e5985def78d672885a768ea32272a0bbe88f4 (patch)
tree80c638a45dd8b0ef7780c03b61e3926f12394be6 /packages/SystemUI
parent32c4802a8ac624e0426888612533a4d649f349b9 (diff)
downloadframeworks_base-7d0e5985def78d672885a768ea32272a0bbe88f4.zip
frameworks_base-7d0e5985def78d672885a768ea32272a0bbe88f4.tar.gz
frameworks_base-7d0e5985def78d672885a768ea32272a0bbe88f4.tar.bz2
Remove bang from not connected wifi
Bug: 22281118 Change-Id: I4752c0e7378fca4a94c73083a8a394cde7d6f170
Diffstat (limited to 'packages/SystemUI')
-rw-r--r--packages/SystemUI/src/com/android/systemui/qs/tiles/WifiTile.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/qs/tiles/WifiTile.java b/packages/SystemUI/src/com/android/systemui/qs/tiles/WifiTile.java
index c33ef7c..3bfff2f 100644
--- a/packages/SystemUI/src/com/android/systemui/qs/tiles/WifiTile.java
+++ b/packages/SystemUI/src/com/android/systemui/qs/tiles/WifiTile.java
@@ -144,7 +144,7 @@ public class WifiTile extends QSTile<QSTile.SignalState> {
state.label = removeDoubleQuotes(cb.enabledDesc);
signalContentDescription = cb.wifiSignalContentDescription;
} else if (wifiNotConnected) {
- state.icon = ResourceIcon.get(R.drawable.ic_qs_wifi_0);
+ state.icon = ResourceIcon.get(R.drawable.ic_qs_wifi_full_0);
state.label = r.getString(R.string.quick_settings_wifi_label);
signalContentDescription = r.getString(R.string.accessibility_no_wifi);
} else {