summaryrefslogtreecommitdiffstats
path: root/src/com/android/settings/bluetooth/BluetoothDevicePreference.java
diff options
context:
space:
mode:
authorAmith Yamasani <yamasani@google.com>2011-06-02 11:48:55 -0700
committerAmith Yamasani <yamasani@google.com>2011-06-02 11:48:55 -0700
commit3a5b3494a7543c1ddb66c6f630856c3aace03f0a (patch)
tree9e74a4d036e08f84d8ab0bdfbef8a98f49f3d87d /src/com/android/settings/bluetooth/BluetoothDevicePreference.java
parent8ac8456491e1409a071c7cf4e164440aeec7c4dd (diff)
downloadpackages_apps_Settings-3a5b3494a7543c1ddb66c6f630856c3aace03f0a.zip
packages_apps_Settings-3a5b3494a7543c1ddb66c6f630856c3aace03f0a.tar.gz
packages_apps_Settings-3a5b3494a7543c1ddb66c6f630856c3aace03f0a.tar.bz2
Make the BT class icon visible.
This change is required due to a change in the framework to accomodate smaller screen sizes. Bug: 4519989 Change-Id: I77c5d72b29dec69df2bdd4d82811f4828ad155a6
Diffstat (limited to 'src/com/android/settings/bluetooth/BluetoothDevicePreference.java')
-rw-r--r--src/com/android/settings/bluetooth/BluetoothDevicePreference.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/settings/bluetooth/BluetoothDevicePreference.java b/src/com/android/settings/bluetooth/BluetoothDevicePreference.java
index 2dba279..391c941 100644
--- a/src/com/android/settings/bluetooth/BluetoothDevicePreference.java
+++ b/src/com/android/settings/bluetooth/BluetoothDevicePreference.java
@@ -120,7 +120,7 @@ public final class BluetoothDevicePreference extends Preference implements
ImageView btClass = (ImageView) view.findViewById(android.R.id.icon);
btClass.setImageResource(getBtClassDrawable());
btClass.setAlpha(isEnabled() ? 255 : sDimAlpha);
-
+ btClass.setVisibility(View.VISIBLE);
mDeviceSettings = (ImageView) view.findViewById(R.id.deviceDetails);
if (mOnSettingsClickListener != null) {
mDeviceSettings.setOnClickListener(this);