From aa5532efc13b2d065d20165b6f3843891d2059cc Mon Sep 17 00:00:00 2001 From: Eliya G Date: Sun, 11 Aug 2024 18:12:02 -0400 Subject: [PATCH] Tkinter Zoom Fix Tkinter deprecated the ".state('zoomed') method. Commenting out this UI statement allows for project to run. --- pyamaze/pyamaze.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyamaze/pyamaze.py b/pyamaze/pyamaze.py index 9a71878..4d9bfeb 100644 --- a/pyamaze/pyamaze.py +++ b/pyamaze/pyamaze.py @@ -619,7 +619,7 @@ def _drawMaze(self,theme): self._LabWidth=26 # Space from the top for Labels self._win=Tk() - self._win.state('zoomed') + # self._win.state('zoomed') self._win.title('PYTHON MAZE WORLD by Learning Orbis') scr_width=self._win.winfo_screenwidth()