Changes default window size to 1200x800
This commit is contained in:
1359
copycat.log
1359
copycat.log
File diff suppressed because it is too large
Load Diff
@ -49,6 +49,7 @@ class GUI(object):
|
|||||||
def __init__(self, title):
|
def __init__(self, title):
|
||||||
self.root = tk.Tk()
|
self.root = tk.Tk()
|
||||||
self.root.title(title)
|
self.root.title(title)
|
||||||
|
self.root.geometry('1200x800')
|
||||||
self.app = MainApplication(self.root)
|
self.app = MainApplication(self.root)
|
||||||
self.app.pack(side='top', fill='both', expand=True)
|
self.app.pack(side='top', fill='both', expand=True)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user