fix formatting

This commit is contained in:
Tomas Groth 2024-01-28 21:45:44 +01:00
parent 664ea79c5c
commit 49e97621d7
2 changed files with 2 additions and 2 deletions

View file

@ -99,7 +99,7 @@ DisplayApp::DisplayApp(Drivers::St7789& lcd,
filesystem {filesystem},
lvgl {lcd, filesystem},
timer(this, TimerCallback),
popupMessage {Screens::Symbols::lock, 90, 90 },
popupMessage {Screens::Symbols::lock, 90, 90},
controllers {batteryController,
bleController,
dateTimeController,

View file

@ -3,7 +3,7 @@
using namespace Pinetime::Applications::Widgets;
PopupMessage::PopupMessage(const char* msg, int16_t h, int16_t w) : message{msg}, height{h}, width{w} {
PopupMessage::PopupMessage(const char* msg, int16_t h, int16_t w) : message {msg}, height {h}, width {w} {
}
void PopupMessage::Create() {