added missing arguments to CTkSLider configure #1790

This commit is contained in:
Tom Schimansky
2023-07-08 21:24:59 +02:00
parent e116faf910
commit 9cfd5f4515
3 changed files with 33 additions and 14 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")