Focus on the input box upon start

This commit is contained in:
zenyd 2017-09-24 16:34:55 +02:00
parent 97d5a122a2
commit ee31ae58b6
1 changed files with 1 additions and 0 deletions

View File

@ -14,6 +14,7 @@ class subselect :
self.video_title_in.bind("<Return>", self.search_)
self.video_title_in.insert(0, videotitle)
self.video_title_in.grid(row=0, column=0)
self.video_title_in.focus()
self.search_button = Button(frame, text="Search", command=self.search)
self.search_button.grid(row=0, column=1)
self.best_button = Button(frame, text="Best", command=self.download_best_subtitle)