summaryrefslogtreecommitdiffstats
path: root/res/drawable
diff options
context:
space:
mode:
authorMichael Bestas <mikeioannina@cyanogenmod.org>2016-04-15 02:45:15 +0300
committerGerrit Code Review <gerrit@cyanogenmod.org>2016-04-15 06:39:42 -0700
commitcf8e3dffaecb7cdb5a684727805fc05bb6c2575c (patch)
treeb32cfde1db7a403f7bda3ba1c2c1f4f18c015e0e /res/drawable
parentfd7727422fdce8517ce3b2d236c4c27125d99a30 (diff)
downloadpackages_apps_Settings-cf8e3dffaecb7cdb5a684727805fc05bb6c2575c.zip
packages_apps_Settings-cf8e3dffaecb7cdb5a684727805fc05bb6c2575c.tar.gz
packages_apps_Settings-cf8e3dffaecb7cdb5a684727805fc05bb6c2575c.tar.bz2
Fix unavailable wifi icon in wifi priorities
Change-Id: I5a36909d1f99e4ba6986421266d8b91a59fd2b8e
Diffstat (limited to 'res/drawable')
-rw-r--r--res/drawable/wifi_no_signal.xml17
1 files changed, 13 insertions, 4 deletions
diff --git a/res/drawable/wifi_no_signal.xml b/res/drawable/wifi_no_signal.xml
index 7a86de3..4bbc99e 100644
--- a/res/drawable/wifi_no_signal.xml
+++ b/res/drawable/wifi_no_signal.xml
@@ -1,17 +1,26 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2015 The CyanogenMod Project
+<!-- Copyright (C) 2016 The CyanogenMod Project
+
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
+
http://www.apache.org/licenses/LICENSE-2.0
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
+
<selector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:settings="http://schemas.android.com/apk/res/com.android.settings">
- <item settings:state_encrypted="true" android:drawable="@drawable/ic_wifi_lock_signal_1_dark" />
- <item settings:state_encrypted="false" android:drawable="@drawable/ic_wifi_signal_1_dark" />
-</selector> \ No newline at end of file
+ <item settings:state_encrypted="true">
+ <layer-list>
+ <item android:drawable="@drawable/ic_wifi_signal_0" />
+ <item android:drawable="@drawable/ic_wifi_signal_lock" />
+ </layer-list>
+ </item>
+ <item settings:state_encrypted="false" android:drawable="@drawable/ic_wifi_signal_0" />
+</selector>