summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/settings/SettingBluetooth.h
diff options
context:
space:
mode:
authorMichele Bini <michele.bini@gmail.com>2022-04-10 11:00:50 (GMT)
committerMichele Bini <michele.bini@gmail.com>2022-05-12 03:23:10 (GMT)
commit6c3268c24be4555b68d4fd4e4bf488d5fce1369c (patch)
tree8297e654d86890043135ddc36cab2a61879ecf34 /src/displayapp/screens/settings/SettingBluetooth.h
parentc559096005f37fd53b36c861fdd65f600a76f7c1 (diff)
Bluetooth Passkey Toggle setting
Diffstat (limited to 'src/displayapp/screens/settings/SettingBluetooth.h')
-rw-r--r--src/displayapp/screens/settings/SettingBluetooth.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/displayapp/screens/settings/SettingBluetooth.h b/src/displayapp/screens/settings/SettingBluetooth.h
index 12bb459..63cdd39 100644
--- a/src/displayapp/screens/settings/SettingBluetooth.h
+++ b/src/displayapp/screens/settings/SettingBluetooth.h
@@ -19,11 +19,13 @@ namespace Pinetime {
void OnBluetoothEnabled(lv_obj_t* object, lv_event_t event);
void OnBluetoothDisabled(lv_obj_t* object, lv_event_t event);
+ void OnBluetoothPasskeyEnableToggle(lv_obj_t* object, lv_event_t event);
private:
Controllers::Settings& settingsController;
- lv_obj_t* cbEnabled;
lv_obj_t* cbDisabled;
+ lv_obj_t* cbEnabled;
+ lv_obj_t* cbPasskey;
bool priorMode;
};
}