Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 232e6fb3 authored by Ryan Baxter's avatar Ryan Baxter
Browse files

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: default avatarRyan Baxter <rbryanbaxter@gmail.com>
parent ba6a68c8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);