Skip to content

Commit 4ee626b

Browse files
author
Olivier ROMAN
committed
fix initialisation order
1 parent d1593d6 commit 4ee626b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/displayapp/screens/WatchFacePineTimeStyle.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,15 +75,15 @@ WatchFacePineTimeStyle::WatchFacePineTimeStyle(Controllers::DateTime& dateTimeCo
7575
Controllers::MotionController& motionController,
7676
Controllers::SimpleWeatherService& weatherService)
7777
: currentDateTime {{}},
78+
needle_colors {Colors::Named::White},
7879
batteryIcon(false),
7980
dateTimeController {dateTimeController},
8081
batteryController {batteryController},
8182
bleController {bleController},
8283
notificationManager {notificationManager},
8384
settingsController {settingsController},
8485
motionController {motionController},
85-
weatherService {weatherService},
86-
needle_colors {Colors::Named::White} {
86+
weatherService {weatherService} {
8787

8888
// Create a 200px wide background rectangle
8989
timebar = lv_obj_create(lv_scr_act(), nullptr);

0 commit comments

Comments
 (0)