diff --git a/mobile/src/main/java/be/mygod/vpnhotspot/net/TetherType.kt b/mobile/src/main/java/be/mygod/vpnhotspot/net/TetherType.kt index db3966fd..b6101430 100644 --- a/mobile/src/main/java/be/mygod/vpnhotspot/net/TetherType.kt +++ b/mobile/src/main/java/be/mygod/vpnhotspot/net/TetherType.kt @@ -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 } diff --git a/mobile/src/main/res/drawable/ic_action_settings_input_antenna.xml b/mobile/src/main/res/drawable/ic_action_settings_input_antenna.xml new file mode 100644 index 00000000..0da55e23 --- /dev/null +++ b/mobile/src/main/res/drawable/ic_action_settings_input_antenna.xml @@ -0,0 +1,9 @@ + + + diff --git a/mobile/src/main/res/layout/listitem_repeater.xml b/mobile/src/main/res/layout/listitem_repeater.xml index 8f6bf7b6..430539f7 100644 --- a/mobile/src/main/res/layout/listitem_repeater.xml +++ b/mobile/src/main/res/layout/listitem_repeater.xml @@ -23,7 +23,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_vertical" - android:src="@drawable/ic_device_network_wifi" + android:src="@drawable/ic_action_settings_input_antenna" android:tint="?android:attr/textColorPrimary"/>