Describe the bug
Opening the Dependencies Window results in a blank window and throws an error in the terminal:
Exception in Tkinter callback Traceback (most recent call last): File "tkinter/__init__.py", line 1967, in __call__ File "customtkinter/windows/widgets/ctk_button.py", line 554, in _clicked File "modpack_debugger.py", line 546, in manage_dependencies File "tkinter/__init__.py", line 963, in grab_set _tkinter.TclError: grab failed: window not viewable
To Reproduce
Steps to reproduce the behavior:
- Click on 'Manage Dependencies'
- See issue
Expected behavior
The Dependencies window should be displayed properly.
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
- OS: Arch Linux
- Python Version: exe
- Version: 2.0.0
Additional context
After searching the thrown error, I found a possible solution: adding dep_window.wait_visibility() before dep_window.grab_set() on manage_dependencies seemingly fixes the issue
Describe the bug
Opening the Dependencies Window results in a blank window and throws an error in the terminal:
Exception in Tkinter callback Traceback (most recent call last): File "tkinter/__init__.py", line 1967, in __call__ File "customtkinter/windows/widgets/ctk_button.py", line 554, in _clicked File "modpack_debugger.py", line 546, in manage_dependencies File "tkinter/__init__.py", line 963, in grab_set _tkinter.TclError: grab failed: window not viewableTo Reproduce
Steps to reproduce the behavior:
Expected behavior
The Dependencies window should be displayed properly.
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
Additional context
After searching the thrown error, I found a possible solution: adding
dep_window.wait_visibility()beforedep_window.grab_set()onmanage_dependenciesseemingly fixes the issue