Clock : initialize the actual clockface in initialization list instead of in the core of the ctro().

This commit is contained in:
Jean-François Milants 2021-06-12 14:21:29 +02:00
parent 17c6583937
commit d7962617e4

View File

@ -32,25 +32,18 @@ Clock::Clock(DisplayApp* app,
notificatioManager {notificatioManager},
settingsController {settingsController},
heartRateController {heartRateController},
motionController {motionController} {
motionController {motionController},
screen {[this, &settingsController]() {
switch (settingsController.GetClockFace()) {
case 0:
screen = WatchFaceDigitalScreen();
return WatchFaceDigitalScreen();
break;
case 1:
screen = WatchFaceAnalogScreen();
return WatchFaceAnalogScreen();
break;
/*
// Examples for more watch faces
case 2:
screen = WatchFaceMinimalScreen();
break;
case 3:
screen = WatchFaceCustomScreen();
break;
*/
}
return WatchFaceDigitalScreen();
}()} {
settingsController.SetAppMenu(0);
}