You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using my homebrew python+python-tk installation everything works fine, but when I use a uv installed python version, tkinter is basically working, but there is a problem with dialog/window focus.
When I use the homebrew python+python-tk installation and when using "filedialog.askopenfilename", the file dialog is opened in the foreground and immediately visible to the user
With the uv installed python version the file dialog stays in the background and a warning is printed too python3[38524:799162] +[IMKClient subclass]: chose IMKClient_Modern
This is my small test script to easily reproduce this behavior
fromtkinterimportTkfromtkinterimportfiledialogroot=Tk()
root.withdraw() # Hide the main windowfile_path=filedialog.askopenfilename()
print(file_path)
The text was updated successfully, but these errors were encountered:
This is somehow a followup to #7036
When using my homebrew python+python-tk installation everything works fine, but when I use a uv installed python version, tkinter is basically working, but there is a problem with dialog/window focus.
When I use the homebrew python+python-tk installation and when using "filedialog.askopenfilename", the file dialog is opened in the foreground and immediately visible to the user
With the uv installed python version the file dialog stays in the background and a warning is printed too
python3[38524:799162] +[IMKClient subclass]: chose IMKClient_Modern
This is my small test script to easily reproduce this behavior
The text was updated successfully, but these errors were encountered: