CheckboxList : fix formatting.

This commit is contained in:
Jean-François Milants 2022-10-11 21:11:23 +02:00 committed by JF
parent 4ec49bde8a
commit 8c7be1fbb1
3 changed files with 28 additions and 29 deletions

View file

@ -19,10 +19,7 @@ CheckboxList::CheckboxList(const uint8_t screenID,
uint32_t originalValue,
std::function<void(uint32_t)> OnValueChanged,
std::array<const char*, MaxItems> options)
: Screen(app),
screenID {screenID},
OnValueChanged{std::move(OnValueChanged)},
options {options}, value {originalValue} {
: Screen(app), screenID {screenID}, OnValueChanged {std::move(OnValueChanged)}, options {options}, value {originalValue} {
// Set the background to Black
lv_obj_set_style_local_bg_color(lv_scr_act(), LV_OBJ_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_BLACK);

View file

@ -34,7 +34,8 @@ bool SettingWatchFace::OnTouchEvent(Pinetime::Applications::TouchEvents event) {
std::unique_ptr<Screen> SettingWatchFace::CreateScreen1() {
std::array<const char*, 4> watchfaces {"Digital face", "Analog face", "PineTimeStyle", "Terminal"};
return std::make_unique<Screens::CheckboxList>(0,
return std::make_unique<Screens::CheckboxList>(
0,
2,
app,
title,
@ -49,7 +50,8 @@ std::unique_ptr<Screen> SettingWatchFace::CreateScreen1() {
std::unique_ptr<Screen> SettingWatchFace::CreateScreen2() {
std::array<const char*, 4> watchfaces {"Infineat face", "Casio G7710", "", ""};
return std::make_unique<Screens::CheckboxList>(1,
return std::make_unique<Screens::CheckboxList>(
1,
2,
app,
title,