CustomTkinter
CustomTkinter copied to clipboard
entry.delete(0,tkinter.END) breaks the entry
The placeholdertext reappears but the user is able to edit it and entry.get() returns ""
Here's a quick solution..
entry.delete(0 , tk.END)
entry.insert(tk.END,"")