CheckboxList : fix formatting.
This commit is contained in:

committed by
JF

parent
4ec49bde8a
commit
8c7be1fbb1
@@ -34,30 +34,32 @@ 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,
|
||||
2,
|
||||
app,
|
||||
title,
|
||||
symbol,
|
||||
settingsController.GetClockFace(),
|
||||
[&settings = settingsController](uint32_t clockFace) {
|
||||
settings.SetClockFace(clockFace);
|
||||
settings.SaveSettings();
|
||||
},
|
||||
watchfaces);
|
||||
return std::make_unique<Screens::CheckboxList>(
|
||||
0,
|
||||
2,
|
||||
app,
|
||||
title,
|
||||
symbol,
|
||||
settingsController.GetClockFace(),
|
||||
[&settings = settingsController](uint32_t clockFace) {
|
||||
settings.SetClockFace(clockFace);
|
||||
settings.SaveSettings();
|
||||
},
|
||||
watchfaces);
|
||||
}
|
||||
|
||||
std::unique_ptr<Screen> SettingWatchFace::CreateScreen2() {
|
||||
std::array<const char*, 4> watchfaces {"Infineat face", "Casio G7710", "", ""};
|
||||
return std::make_unique<Screens::CheckboxList>(1,
|
||||
2,
|
||||
app,
|
||||
title,
|
||||
symbol,
|
||||
settingsController.GetClockFace(),
|
||||
[&settings = settingsController](uint32_t clockFace) {
|
||||
settings.SetClockFace(clockFace);
|
||||
settings.SaveSettings();
|
||||
},
|
||||
watchfaces);
|
||||
return std::make_unique<Screens::CheckboxList>(
|
||||
1,
|
||||
2,
|
||||
app,
|
||||
title,
|
||||
symbol,
|
||||
settingsController.GetClockFace(),
|
||||
[&settings = settingsController](uint32_t clockFace) {
|
||||
settings.SetClockFace(clockFace);
|
||||
settings.SaveSettings();
|
||||
},
|
||||
watchfaces);
|
||||
}
|
||||
|
Reference in New Issue
Block a user