From 2dd1612ec8c3cf66b54a7fc3b0289a8a5d3e0f53 Mon Sep 17 00:00:00 2001 From: Seth Date: Mon, 25 Nov 2024 20:46:52 +1300 Subject: [PATCH] removed the fixed starting size of the window --- OutGaugeInterpreter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OutGaugeInterpreter.py b/OutGaugeInterpreter.py index ee86a2a..d6afc13 100644 --- a/OutGaugeInterpreter.py +++ b/OutGaugeInterpreter.py @@ -77,7 +77,7 @@ def startStopButtonFunc(): ##GUI init rootFrameGui= tkinter.Tk() rootFrameGui.title("Car speed to arduino") -rootFrameGui.geometry("400x200") +##rootFrameGui.geometry("400x200") bottomBarFrameGui = tkinter.ttk.Frame(rootFrameGui,padding=0,relief="groove",borderwidth=2,) bottomBarFrameGui.pack(anchor="se",side="bottom",fill="x")