Skip to content

Commit

Permalink
color_ui cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
tpruvot committed Aug 26, 2021
1 parent eecc167 commit d7b9756
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Marlin/src/lcd/tft/ui_1024x600.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ void MarlinUI::tft_idle() {
ui.clear_lcd();
tft.queue.async();
}
TERN_(TOUCH_SCREEN, touch.idle());
touch.idle();
return;
} else sleepCleared = false;
#endif
Expand Down
2 changes: 1 addition & 1 deletion Marlin/src/lcd/tft/ui_320x240.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ void MarlinUI::tft_idle() {
ui.clear_lcd();
tft.queue.async();
}
TERN_(TOUCH_SCREEN, touch.idle());
touch.idle();
return;
} else sleepCleared = false;
#endif
Expand Down
2 changes: 1 addition & 1 deletion Marlin/src/lcd/tft/ui_480x320.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ void MarlinUI::tft_idle() {
ui.clear_lcd();
tft.queue.async();
}
TERN_(TOUCH_SCREEN, touch.idle());
touch.idle();
return;
} else sleepCleared = false;
#endif
Expand Down

0 comments on commit d7b9756

Please sign in to comment.