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

Commit 90bec300 authored by Jason Monk's avatar Jason Monk Committed by Android Git Automerger
Browse files

am 56dd1f1e: Merge "Automatically enable BT when entering BT QS panel" into lmp-mr1-dev

* commit '56dd1f1e':
  Automatically enable BT when entering BT QS panel
parents 439f17e6 56dd1f1e
Loading
Loading
Loading
Loading
+4 −0
Original line number Original line Diff line number Diff line
@@ -77,6 +77,10 @@ public class BluetoothTile extends QSTile<QSTile.BooleanState> {


    @Override
    @Override
    protected void handleSecondaryClick() {
    protected void handleSecondaryClick() {
        if (!mState.value) {
            mState.value = true;
            mController.setBluetoothEnabled(true);
        }
        showDetail(true);
        showDetail(true);
    }
    }