diff --git a/Main.py b/Main.py index 698b79e..fd9e54d 100644 --- a/Main.py +++ b/Main.py @@ -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