X Tutup
The Wayback Machine - https://web.archive.org/web/20220922115756/https://github.com/python/cpython/issues/96979
Skip to content
New issue

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

Tkinter filedialog.askdirectory(title='example') does not show title #96979

Open
VasuBhog opened this issue Sep 21, 2022 · 0 comments
Open

Tkinter filedialog.askdirectory(title='example') does not show title #96979

VasuBhog opened this issue Sep 21, 2022 · 0 comments
Labels
type-bug An unexpected behavior, bug, or error

Comments

@VasuBhog
Copy link

VasuBhog commented Sep 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:
image

with no title at the top.

MAC OS
Python 3.10.4

@VasuBhog VasuBhog added the type-bug An unexpected behavior, bug, or error label Sep 21, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type-bug An unexpected behavior, bug, or error
Projects
None yet
Development

No branches or pull requests

1 participant
X Tutup