Permalink
Browse files

removed fixed window size

  • Loading branch information...
1 parent e7af1ea commit 67ff85f36d00d06910de935c1c5d5934708afdef @bahniks committed Apr 21, 2016
Showing with 1 addition and 2 deletions.
  1. +1 −2 Stuff/Modules/starter.py
View
@@ -52,10 +52,9 @@ def __init__(self):
self.after(250, lambda: print(self.winfo_height()))
'''
x, y = 1000, 770
- self.minsize(x, y)
placeWindow(self, x, y)
- self.selectFunction = ttk.Notebook(self, height = y, width = x)
+ self.selectFunction = ttk.Notebook(self)
self.selectFunction.grid()
self["menu"] = MenuCM(self)

0 comments on commit 67ff85f

Please sign in to comment.