We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Noticed you're calling tkinter directly to get filenames.
file = askopenfile(mode = 'r', filetypes=[("EPUB files", "*.epub")])
You can do the same thing by calling
sg.popup_get_file('Open which file?', file_types=[("EPUB files", "*.epub")])
Or if you don't want to see the popup's window, you can set a flag so that you get only the open dialog.
sg.popup_get_file('Open which file?', no_window=True, file_types=[("EPUB files", "*.epub")])
The text was updated successfully, but these errors were encountered:
Thanks @PySimpleGUI
Sorry, something went wrong.
No branches or pull requests
Noticed you're calling tkinter directly to get filenames.
You can do the same thing by calling
Or if you don't want to see the popup's window, you can set a flag so that you get only the open dialog.
The text was updated successfully, but these errors were encountered: