add wait_for_exit method

pull/35064/head
Cameron Clough 1 day ago
parent 720c46dbdb
commit a023e4f5a7
  1. 4
      system/ui/text.py

@ -87,6 +87,10 @@ class TextWindow:
while self._renderer is None and self._thread.is_alive():
time.sleep(0.01)
def wait_for_exit(self):
while self._thread.is_alive():
time.sleep(0.01)
def _run(self):
if os.getenv("CI") is not None:
return

Loading…
Cancel
Save