Skip to content

Commit

Permalink
Fix LCD throttle issue (MarlinFirmware#18055)
Browse files Browse the repository at this point in the history
  • Loading branch information
GMagician authored and Alexander Yasnogor committed Aug 7, 2020
1 parent 8cff45a commit 5811e98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/lcd/ultralcd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -881,7 +881,7 @@ void MarlinUI::update() {
// Instead of tracking changes just redraw the Status Screen once per second.
if (on_status_screen() && !lcd_status_update_delay--) {
lcd_status_update_delay = TERN(HAS_GRAPHICAL_LCD, 12, 9);
max_display_update_time--;
if (max_display_update_time) max_display_update_time--; // Be sure never go to a very big number
refresh(LCDVIEW_REDRAW_NOW);
}

Expand Down

0 comments on commit 5811e98

Please sign in to comment.