Compare commits

..

2 Commits

View File

@ -50,15 +50,16 @@ def main():
# GUI for selecting Prism instance path # GUI for selecting Prism instance path
app = CTk() app = CTk()
app.title("FamilyCraft Launcher")
set_appearance_mode("dark") set_appearance_mode("dark")
#root.title("Select Prism Instance Path") #root.title("Select Prism Instance Path")
# Label for instructions # 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) label.pack(pady=10)
# Entry widget for Prism instance path # 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) prism_instance_path_entry.pack(pady=5)
# If a stored Prism instance path exists, pre-fill the entry widget # If a stored Prism instance path exists, pre-fill the entry widget