Changes default window size to 1200x800

This commit is contained in:
LSaldyt
2017-09-28 15:37:09 -06:00
parent 33e2eb980d
commit 6d42f2c1a4
2 changed files with 623 additions and 737 deletions

File diff suppressed because it is too large Load Diff

View File

@ -49,6 +49,7 @@ class GUI(object):
def __init__(self, title):
self.root = tk.Tk()
self.root.title(title)
self.root.geometry('1200x800')
self.app = MainApplication(self.root)
self.app.pack(side='top', fill='both', expand=True)