CustomTkinter icon indicating copy to clipboard operation
CustomTkinter copied to clipboard

entry.delete(0,tkinter.END) breaks the entry

Open emilkevinmanuel opened this issue 3 years ago • 1 comments

The placeholdertext reappears but the user is able to edit it and entry.get() returns ""

emilkevinmanuel avatar Oct 01 '22 13:10 emilkevinmanuel

Here's a quick solution..

entry.delete(0 , tk.END)
entry.insert(tk.END,"")

EissaMD avatar Oct 09 '22 22:10 EissaMD