I\'m using the following code snippet to open a file chooser dialog box. It opens up the dialog fine, but after a file is chosen the dialog box stays open for the duration o
For the sake of closing this question, here is the answer:
Call root.update() before askopenfilename()
root.update()
askopenfilename()