summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xsrc/com/android/settings/bluetooth/DeviceProfilesSettings.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/com/android/settings/bluetooth/DeviceProfilesSettings.java b/src/com/android/settings/bluetooth/DeviceProfilesSettings.java
index df66a07..5dd7098 100755
--- a/src/com/android/settings/bluetooth/DeviceProfilesSettings.java
+++ b/src/com/android/settings/bluetooth/DeviceProfilesSettings.java
@@ -263,7 +263,6 @@ public final class DeviceProfilesSettings extends DialogFragment implements
} else {
if (profile instanceof MapProfile) {
mCachedDevice.setMessagePermissionChoice(BluetoothDevice.ACCESS_ALLOWED);
- refreshProfilePreference(profilePref, profile);
}
if (profile.isPreferred(device)) {
// profile is preferred but not connected: disable auto-connect
@@ -271,12 +270,12 @@ public final class DeviceProfilesSettings extends DialogFragment implements
mCachedDevice.connectProfile(profile);
} else {
profile.setPreferred(device, false);
- refreshProfilePreference(profilePref, profile);
}
} else {
profile.setPreferred(device, true);
mCachedDevice.connectProfile(profile);
}
+ refreshProfilePreference(profilePref, profile);
}
}