TomSchimansky / CustomTkinter

A modern and customizable python UI-library based on Tkinter
MIT License
11.33k stars 1.07k forks source link

focus not work in CTkEntry. #1062

Open hadete22 opened 1 year ago

hadete22 commented 1 year ago

In standart tkinter it works

Schnieker commented 1 year ago

Had the same issue. Try it with a small delay self.entry.after(100, self.entry.focus_set)

viniciusschnoor commented 1 year ago

Had the same issue. Try it with a small delay self.entry.after(100, self.entry.focus_set)

It's working!