Fix wifi icon being way too overused

This commit is contained in:
Mygod
2018-06-11 11:13:09 +08:00
parent 5fb9e8408d
commit c9344a9549
3 changed files with 12 additions and 2 deletions

View File

@@ -10,7 +10,8 @@ enum class TetherType {
val icon get() = when (this) {
USB -> R.drawable.ic_device_usb
WIFI_P2P, WIFI, WIMAX -> R.drawable.ic_device_network_wifi
WIFI_P2P -> R.drawable.ic_action_settings_input_antenna
WIFI, WIMAX -> R.drawable.ic_device_network_wifi
BLUETOOTH -> R.drawable.ic_device_bluetooth
else -> R.drawable.ic_device_wifi_tethering
}