removed the fixed starting size of the window

This commit is contained in:
Seth Samuel 2024-11-25 20:46:52 +13:00
parent 44ef5ce6cb
commit 2dd1612ec8

View file

@ -77,7 +77,7 @@ def startStopButtonFunc():
##GUI init ##GUI init
rootFrameGui= tkinter.Tk() rootFrameGui= tkinter.Tk()
rootFrameGui.title("Car speed to arduino") rootFrameGui.title("Car speed to arduino")
rootFrameGui.geometry("400x200") ##rootFrameGui.geometry("400x200")
bottomBarFrameGui = tkinter.ttk.Frame(rootFrameGui,padding=0,relief="groove",borderwidth=2,) bottomBarFrameGui = tkinter.ttk.Frame(rootFrameGui,padding=0,relief="groove",borderwidth=2,)
bottomBarFrameGui.pack(anchor="se",side="bottom",fill="x") bottomBarFrameGui.pack(anchor="se",side="bottom",fill="x")