From f5a8b19b65960bc12f5f180116863904e057cc04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristofer=20S=C3=B6derstr=C3=B6m?= Date: Mon, 27 Mar 2023 09:57:28 +0200 Subject: [PATCH] fixed bug --- GUI.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/GUI.py b/GUI.py index de5619e..3ccdf01 100644 --- a/GUI.py +++ b/GUI.py @@ -14,11 +14,11 @@ class App: self.master = master master.title("Local Transcribe") - #style = ttk.Style() - #style.configure('TLabel', font=('Arial', 10), padding=10) - #style.configure('TEntry', font=('Arial', 10), padding=10) - #style.configure('TButton', font=('Arial', 10), padding=10) - #style.configure('TCheckbutton', font=('Arial', 10), padding=10) + style = ttk.Style() + style.configure('TLabel', font=('Arial', 10), padding=10) + style.configure('TEntry', font=('Arial', 10), padding=10) + style.configure('TButton', font=('Arial', 10), padding=10) + style.configure('TCheckbutton', font=('Arial', 10), padding=10) # Folder Path path_frame = ttk.Frame(master, padding=10) @@ -95,6 +95,5 @@ class App: if __name__ == "__main__": # root = tk.Tk() root = ThemedTk(theme="clearlooks") - root.geometry("300x200") app = App(root) root.mainloop() \ No newline at end of file