summaryrefslogtreecommitdiffstats
path: root/src/com/android/settings/bluetooth
diff options
context:
space:
mode:
authorPauloftheWest <paulofthewest@google.com>2014-09-10 14:21:44 -0700
committerPauloftheWest <paulofthewest@google.com>2014-09-10 14:24:11 -0700
commit85daf61bda46b01bda7bd267fd34517376d6d4ee (patch)
tree6ff644738c782e2240f53a05cf5a2c805d4c628e /src/com/android/settings/bluetooth
parent72e5583d2a9af10f2750e9abd23c3d5400e3c789 (diff)
downloadpackages_apps_Settings-85daf61bda46b01bda7bd267fd34517376d6d4ee.zip
packages_apps_Settings-85daf61bda46b01bda7bd267fd34517376d6d4ee.tar.gz
packages_apps_Settings-85daf61bda46b01bda7bd267fd34517376d6d4ee.tar.bz2
Updated Bluetooth keyboard icon to teal.
Bug: 17140804 Change-Id: I59a4c0ff81b723ff4676b607e3da6cdc5c73625e
Diffstat (limited to 'src/com/android/settings/bluetooth')
-rwxr-xr-xsrc/com/android/settings/bluetooth/HidProfile.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/android/settings/bluetooth/HidProfile.java b/src/com/android/settings/bluetooth/HidProfile.java
index 8df2845..91e715d 100755
--- a/src/com/android/settings/bluetooth/HidProfile.java
+++ b/src/com/android/settings/bluetooth/HidProfile.java
@@ -169,7 +169,7 @@ final class HidProfile implements LocalBluetoothProfile {
public int getDrawableResource(BluetoothClass btClass) {
if (btClass == null) {
- return R.drawable.ic_bt_keyboard_hid;
+ return R.drawable.ic_lockscreen_ime;
}
return getHidClassDrawable(btClass);
}
@@ -178,7 +178,7 @@ final class HidProfile implements LocalBluetoothProfile {
switch (btClass.getDeviceClass()) {
case BluetoothClass.Device.PERIPHERAL_KEYBOARD:
case BluetoothClass.Device.PERIPHERAL_KEYBOARD_POINTING:
- return R.drawable.ic_bt_keyboard_hid;
+ return R.drawable.ic_lockscreen_ime;
case BluetoothClass.Device.PERIPHERAL_POINTING:
return R.drawable.ic_bt_pointing_hid;
default: