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
While trying to generate the maze in the linux operating system, I am getting the error: _tkinter. TclError: bad argument "zoomed": must be normal, iconic, or withdrawn
This is happening because zoomed works only for windows.
I tried to open a pull request with the changes but you blocked it. Below is what I suggest doing to stop giving error.
try:
self._win.state("zoomed")
self._win.title("PYTHON MAZE WORLD by Learning Orbis")
except:
self._win.title("PYTHON MAZE WORLD by Learning Orbis")
self._win.attributes("-fullscreen", True)
The text was updated successfully, but these errors were encountered:
Hey, I faced the same error. Then I installed this library in a virtual environment and performed the modification you suggested. Now it's totally working. Thanks man!!
While trying to generate the maze in the linux operating system, I am getting the error:
_tkinter. TclError: bad argument "zoomed": must be normal, iconic, or withdrawn
This is happening because zoomed works only for windows.
I tried to open a pull request with the changes but you blocked it. Below is what I suggest doing to stop giving error.
The text was updated successfully, but these errors were encountered: