Add icon for deprecated TetherType.WIMAX

Despite this will never be used, it is good to use a separate icon just to be clear.
This commit is contained in:
Mygod
2020-05-27 21:54:04 -04:00
parent 6e2228b220
commit f16d235cab
2 changed files with 12 additions and 1 deletions

View File

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