Compare commits

..

No commits in common. "1de111ee2cf190a026c6d8825954d90ed5d6b4f9" and "786143081bf83ccbc9a822615d227e0687d5cb80" have entirely different histories.

View File

@ -50,16 +50,15 @@ 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:", font=("Impact", 30)) label = CTkLabel(master=app, text="Select Prism instance path:")
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=350, font=("Arial", 14)) prism_instance_path_entry = CTkEntry(master=app, width=50)
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