From 9d28614c75e76805b808d4b93d77c8dc37bec066 Mon Sep 17 00:00:00 2001 From: Andrei Tatar <6143482+andreittr@users.noreply.github.com> Date: Sat, 15 Jun 2019 14:12:02 +0200 Subject: Do not force-enable BT on extension enable & only do sync if BT on --- extension.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/extension.js b/extension.js index 0a9b9d2..403d956 100644 --- a/extension.js +++ b/extension.js @@ -95,14 +95,15 @@ class BluetoothQuickConnect { if (isOpen && this._autoPowerOnEnabled()) this._proxy.BluetoothAirplaneMode = false; }); - + this._connectSignal(this._model, 'row-changed', () => this._sync()); this._connectSignal(this._model, 'row-deleted', () => this._sync()); this._connectSignal(this._model, 'row-inserted', () => this._sync()); - this._proxy.BluetoothAirplaneMode = false; this._idleMonitor(); - this._sync(); + if (!this._proxy.BluetoothAirplaneMode) { + this._sync(); + } } disable() { -- cgit v1.2.3