Fixed small issue in the execution process (no refresh of display after callback function return)

This commit is contained in:
BlueFox 2024-11-01 21:12:14 +00:00
parent 1ccbb2821a
commit fa97cc022b

View File

@ -198,6 +198,7 @@ class lcdMenu:
self.lcd.move_to(0,1) # move to the second line for the starting message below (takes two lines)
self.lcd.putstr(f"[{selection[0][0:lw].center(lw-2)}]{self.end_execution_msg[0:lw].center(lw)}")
sleep(self.end_execution_wait)
self.show_selection()
# listen for button presses (this method should be called in an endless loop, see method run)