ComboBox and DropDown fixes for Windows

This commit is contained in:
TomSchimansky
2022-06-02 00:15:24 +02:00
parent 550653c6c3
commit 807064a888
4 changed files with 25 additions and 18 deletions

View File

@ -11,7 +11,7 @@ app.title("Tkinter Variable Test")
txt_var = tkinter.StringVar(value="")
entry_1 = customtkinter.CTkEntry(app, width=200, textvariable=txt_var)
entry_1.pack(pady=15)
txt_var.set("new text wjkfjdshkjfb")
txt_var.set("new text test")
if TEST_CONFIGURE: entry_1.configure(textvariable=txt_var)
if TEST_REMOVING: entry_1.configure(textvariable="")