
This fixes an issue where the BLE connected logo would disappear when opening and closing the BLE setting (without changing it) while InfiniTime was already connected to a companion app. Co-authored-by: JustScott <development@justscott.me>
29 lines
618 B
C++
29 lines
618 B
C++
#pragma once
|
|
|
|
#include <array>
|
|
#include <cstdint>
|
|
#include <lvgl/lvgl.h>
|
|
|
|
#include "components/settings/Settings.h"
|
|
#include "displayapp/screens/Screen.h"
|
|
#include "displayapp/screens/CheckboxList.h"
|
|
|
|
namespace Pinetime {
|
|
|
|
namespace Applications {
|
|
namespace Screens {
|
|
|
|
class SettingBluetooth : public Screen {
|
|
public:
|
|
SettingBluetooth(DisplayApp* app, Pinetime::Controllers::Settings& settingsController);
|
|
~SettingBluetooth() override;
|
|
|
|
private:
|
|
DisplayApp* app;
|
|
Pinetime::Controllers::Settings& settings;
|
|
CheckboxList checkboxList;
|
|
};
|
|
}
|
|
}
|
|
}
|