many gui tweaks

This commit is contained in:
Cuptain 2024-06-21 00:37:56 +10:00
parent 460e99dcd4
commit 115005c34e

View File

@ -55,15 +55,16 @@ def main():
# GUI for selecting Prism instance path
app = CTk()
app.title("FamilyCraft Launcher")
set_appearance_mode("dark")
#root.title("Select Prism Instance Path")
# Label for instructions
label = CTkLabel(master=app, text="Select Prism instance path:")
label = CTkLabel(master=app, text="Select Prism instance path:", font=("Impact", 30))
label.pack(pady=10)
# Entry widget for Prism instance path
prism_instance_path_entry = CTkEntry(master=app, width=50)
prism_instance_path_entry = CTkEntry(master=app, width=350, font=("Arial", 14))
prism_instance_path_entry.pack(pady=5)
# If a stored Prism instance path exists, pre-fill the entry widget