This commit is contained in:
William Henderson
2025-07-22 21:06:49 +01:00
parent 97ec3f77e6
commit 2f02dc073d
12 changed files with 25 additions and 14 deletions
+7 -2
View File
@@ -115,13 +115,18 @@ if __name__ == "__main__":
root.iconbitmap(r'Resources/icon1.ico')
# Simply set the theme
root.tk.call("source", "Resources/azure.tcl")
root.tk.call("set_theme", "dark")
#Set a minsize for the window, and place it in the middle
# Set a minsize for the window, and place it in the middle
root.update()
root.minsize(400, 200)
# Footer label in bottom right
footer_frame = tk.Frame(root)
footer_frame.pack(side=tk.BOTTOM, fill=tk.X)
footer_label = tk.Label(footer_frame, text="Made by Hendo 22/07/2025", anchor="e", justify="right", font=("TkDefaultFont", 7, "bold"))
footer_label.pack(side=tk.RIGHT, padx=10, pady=5)
root.mainloop()