summaryrefslogtreecommitdiffstats
path: root/res/drawable/wifi_no_signal.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/drawable/wifi_no_signal.xml')
-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>