fixed color bug when CTkEntry was disabled

This commit is contained in:
Tom Schimansky
2022-05-17 18:59:33 +02:00
parent b21c3fa19a
commit eec16e4509
3 changed files with 26 additions and 23 deletions

View File

@ -34,7 +34,6 @@ progressbar_1.pack(pady=y_padding, padx=10)
button_1 = customtkinter.CTkButton(master=frame_1, corner_radius=8, command=button_function)
button_1.pack(pady=y_padding, padx=10)
# button_1.configure(state="disabled")
slider_1 = customtkinter.CTkSlider(master=frame_1, command=slider_function, from_=0, to=1)
slider_1.pack(pady=y_padding, padx=10)