added disable button decorator to board util

This commit is contained in:
UpstreamData
2022-03-17 16:01:02 -06:00
parent d488c8458c
commit fdec35cd2e
4 changed files with 33 additions and 1 deletions

View File

@@ -25,7 +25,7 @@ async def ui():
# left justify the hostnames
table.column(2, anchor=tk.W)
while True:
event, value = window.read(timeout=10)
event, value = window.read(timeout=0)
if event in (None, 'Close', sg.WIN_CLOSED):
sys.exit()
if isinstance(event, tuple):