Skip to content
Snippets Groups Projects
Verified Commit deb46650 authored by dos's avatar dos
Browse files

sim: fakes: Allow to use leds.update from separate thread

parent e65a32b7
No related branches found
No related tags found
1 merge request!600Simulator improvements
......@@ -83,6 +83,8 @@ class Input:
if ev.type == pygame.QUIT:
pygame.quit()
sys.exit()
if ev.type == pygame.USEREVENT:
_sim.render_gui_lazy()
if prev_hover != self._mouse_hover:
return True
......
......@@ -43,7 +43,7 @@ def set_slew_rate(b: int):
def update():
_sim.leds_update()
_sim.render_gui_lazy()
pygame.event.post(pygame.event.Event(pygame.USEREVENT, {}))
def set_auto_update(b: int):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment