Merge "Automatically enable BT when entering BT QS panel" into lmp-mr1-dev

This commit is contained in:
Jason Monk
2014-11-19 14:58:38 +00:00
committed by Android (Google) Code Review

View File

@@ -77,6 +77,10 @@ public class BluetoothTile extends QSTile<QSTile.BooleanState> {
@Override
protected void handleSecondaryClick() {
if (!mState.value) {
mState.value = true;
mController.setBluetoothEnabled(true);
}
showDetail(true);
}