From f502eaba0a45f169c4b9317bcdd539ce75154d02 Mon Sep 17 00:00:00 2001 From: Amith Yamasani Date: Tue, 15 Mar 2011 15:14:48 -0700 Subject: [PATCH] Flip the icon states for Bluetooth profile auto-connect settings Bug: 4109035 Change-Id: Idb37a583957eeb8ea4c0b804e7933fd8e9af98e3 --- .../settings/bluetooth/BluetoothProfilePreference.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/android/settings/bluetooth/BluetoothProfilePreference.java b/src/com/android/settings/bluetooth/BluetoothProfilePreference.java index e334867ec28..8f6d0a29874 100644 --- a/src/com/android/settings/bluetooth/BluetoothProfilePreference.java +++ b/src/com/android/settings/bluetooth/BluetoothProfilePreference.java @@ -78,8 +78,8 @@ final class BluetoothProfilePreference extends Preference implements OnClickList mProfileExpandView.setOnClickListener(this); mProfileExpandView.setTag(mProfile); mProfileExpandView.setImageResource(mExpanded - ? com.android.internal.R.drawable.expander_open_holo_dark - : com.android.internal.R.drawable.expander_close_holo_dark); + ? com.android.internal.R.drawable.expander_close_holo_dark + : com.android.internal.R.drawable.expander_open_holo_dark); } else { mProfileExpandView.setVisibility(View.GONE); }