Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion pyamaze/pyamaze.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
from tkinter import *
from enum import Enum
from collections import deque
from platform import system


class COLOR(Enum):
'''
Expand Down Expand Up @@ -619,7 +621,10 @@ def _drawMaze(self,theme):

self._LabWidth=26 # Space from the top for Labels
self._win=Tk()
self._win.state('zoomed')
if system() == 'Linux':
self._win.state('normal')
else:
self._win.state('zoomed')
self._win.title('PYTHON MAZE WORLD by Learning Orbis')

scr_width=self._win.winfo_screenwidth()
Expand Down