From 8cc959504f41f6faf42d2d79a19e63ebfc263904 Mon Sep 17 00:00:00 2001 From: Seth Date: Mon, 2 Dec 2024 12:36:36 +1300 Subject: [PATCH] fixed running and waiting text --- OutGaugeInterpreter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OutGaugeInterpreter.py b/OutGaugeInterpreter.py index 35eb2f5..6318c8f 100644 --- a/OutGaugeInterpreter.py +++ b/OutGaugeInterpreter.py @@ -120,12 +120,12 @@ def startStopButtonFunc(): stopThread=False workThread = threading.Thread(target=runningThread) workThread.start() - statusTextVar.set("Waiting...") + statusTextVar.set("Running...") elif appState == ProgramState.PUSHING_DATA: startStopButton.config(text="stop") appState = ProgramState.WAITNG - statusTextVar.set("Running...") + statusTextVar.set("Waiting...") stopThread = True ##GUI init