Skip to content

Commit 9c79fa5

Browse files
author
Olivier ROMAN
committed
fix initialisation order
1 parent 405c5ac commit 9c79fa5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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)