From df6e27783e75c02c41e83f0367ade0b815cf8ed0 Mon Sep 17 00:00:00 2001 From: Seth Date: Fri, 15 Nov 2024 17:37:03 +1300 Subject: [PATCH] have two panes for ui --- OutGaugeInterpreter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OutGaugeInterpreter.py b/OutGaugeInterpreter.py index a0968e5..b2df6ba 100644 --- a/OutGaugeInterpreter.py +++ b/OutGaugeInterpreter.py @@ -69,9 +69,9 @@ rootFrameGui.title("Car speed to arduino") rootFrameGui.geometry("400x200") firstFrameGui=tkinter.ttk.Frame(rootFrameGui,padding=2,relief="groove",borderwidth=2) -firstFrameGui.pack(anchor="nw") +firstFrameGui.pack(anchor="ne",side="left",expand=True) secondFrameGui=tkinter.ttk.Frame(rootFrameGui,padding=2,relief="groove",borderwidth=2) -secondFrameGui.pack(anchor="ne") +secondFrameGui.pack(anchor="nw",side="right",expand=True) serialFrameGui = tkinter.ttk.Frame(firstFrameGui,padding=5,relief="groove",borderwidth=2) serialFrameGui.pack(anchor="nw") serialLableText =tkinter.StringVar()