From 232e6fb3823bb6a26eae238b81ef969950c1d818 Mon Sep 17 00:00:00 2001 From: Ryan Baxter Date: Wed, 6 Mar 2013 18:27:53 -0500 Subject: [PATCH] Fix the message when Bluetooth is turning off while on the tethering menu. Currently says "Turning Wifi off..." This change will display "Turning Bluetooth off..." instead. Change-Id: I697d19ca4d7a69cc6b3729ad09fcf38bf5ab2427 Signed-off-by: Ryan Baxter --- src/com/android/settings/TetherSettings.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/android/settings/TetherSettings.java b/src/com/android/settings/TetherSettings.java index df44e911c9d..d2c99dc9657 100644 --- a/src/com/android/settings/TetherSettings.java +++ b/src/com/android/settings/TetherSettings.java @@ -388,7 +388,7 @@ public class TetherSettings extends SettingsPreferenceFragment int btState = adapter.getState(); if (btState == BluetoothAdapter.STATE_TURNING_OFF) { mBluetoothTether.setEnabled(false); - mBluetoothTether.setSummary(R.string.wifi_stopping); + mBluetoothTether.setSummary(R.string.bluetooth_turning_off); } else if (btState == BluetoothAdapter.STATE_TURNING_ON) { mBluetoothTether.setEnabled(false); mBluetoothTether.setSummary(R.string.bluetooth_turning_on);