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
I use the filedialog command from tkinter but have an issue where the title is supposed to be shown to the user but it is not.
model_file = filedialog.askopenfile(title="Select model.pb file").name labels_file = filedialog.askopenfile(title="Select labels.txt file").name // ask for test images folder images_folder = filedialog.askdirectory(title='Select test images folder')
the first askopenfile shows the title but the askdirectory does not.
the last images_folder only shows this below:
with no title at the top.
MAC OS Python 3.10.4
The text was updated successfully, but these errors were encountered:
No branches or pull requests
VasuBhog commentedSep 21, 2022
I use the filedialog command from tkinter but have an issue where the title is supposed to be shown to the user but it is not.
model_file = filedialog.askopenfile(title="Select model.pb file").name
labels_file = filedialog.askopenfile(title="Select labels.txt file").name
// ask for test images folder
images_folder = filedialog.askdirectory(title='Select test images folder')
the first askopenfile shows the title but the askdirectory does not.
the last images_folder only shows this below:

with no title at the top.
MAC OS
Python 3.10.4
The text was updated successfully, but these errors were encountered: