Skip to content

Commit

Permalink
labels
Browse files Browse the repository at this point in the history
  • Loading branch information
KorryKatti committed Mar 13, 2024
1 parent 4b5417a commit 840bbdc
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions index.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
# Launch repup.py in the background
subprocess.Popen(["python", "appfiles/repup.py"])


# Set the appearance mode and default color theme
ctk.set_appearance_mode("dark") # Modes: system (default), light, dark
ctk.set_default_color_theme("dark-blue") # Themes: blue (default), dark-blue, green
Expand Down Expand Up @@ -59,8 +58,8 @@ def create_labels():
download_button.pack()

# Create a separator line
separator = ctk.CTkSeparator(scrollable_frame, orient="horizontal")
separator.pack(fill="x")
separator = ctk.CTkLabel(scrollable_frame, text="--------------------------")
separator.pack()

# Create the main application window
app = ctk.CTk()
Expand Down Expand Up @@ -123,5 +122,3 @@ def devmenu_callback():

# Start the main event loop
app.mainloop()


0 comments on commit 840bbdc

Please sign in to comment.