Skip to content

Commit

Permalink
fix formatting in src/displayapp/DisplayApp.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Lennart Jahn committed Nov 11, 2023
1 parent 64283c1 commit a5fccdf
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/displayapp/DisplayApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ void DisplayApp::Refresh() {
}
currentScreen->OnLCDSleep();
lv_task_handler(); // call to update display, will not be called again in Idle mode
vTaskDelay(100); // give time for display refresh
vTaskDelay(100); // give time for display refresh
lcd.Sleep();
PushMessageToSystemTask(Pinetime::System::Messages::OnDisplayTaskSleeping);
state = States::Idle;
Expand Down Expand Up @@ -407,8 +407,12 @@ void DisplayApp::LoadScreen(Apps app, DisplayApp::FullRefreshDirections directio

switch (app) {
case Apps::Launcher:
currentScreen =
std::make_unique<Screens::ApplicationList>(this, settingsController, batteryController, bleController, dateTimeController, filesystem);
currentScreen = std::make_unique<Screens::ApplicationList>(this,
settingsController,
batteryController,
bleController,
dateTimeController,
filesystem);
break;
case Apps::Motion:
// currentScreen = std::make_unique<Screens::Motion>(motionController);
Expand Down

0 comments on commit a5fccdf

Please sign in to comment.