fix simple example

This commit is contained in:
Tom Schimansky 2023-07-08 21:32:20 +02:00
parent 9cfd5f4515
commit f629e4c5cb
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ button_1 = customtkinter.CTkButton(master=frame_1, command=button_callback)
button_1.pack(pady=10, padx=10)
slider_1 = customtkinter.CTkSlider(master=frame_1, command=slider_callback, from_=0, to=1)
slider_1.pack(pady=10, padx=10))
slider_1.pack(pady=10, padx=10)
slider_1.set(0.5)
entry_1 = customtkinter.CTkEntry(master=frame_1, placeholder_text="CTkEntry")