Permalink
Browse files

changed window size

  • Loading branch information...
1 parent 3780c65 commit e7af1eab3ef8a1bc4f037db639dce3b45b20c604 @bahniks committed Apr 20, 2016
Showing with 2 additions and 2 deletions.
  1. +1 −1 Stuff/Modules/explorer.py
  2. +1 −1 Stuff/Modules/starter.py
@@ -43,7 +43,7 @@ class Explorer(ttk.Frame):
"represents ''Explore' page in the main window notebook"
def __init__(self, root):
super().__init__(root)
-
+
self["padding"] = (10, 10, 12, 12)
self.animate = "stop"
View
@@ -51,7 +51,7 @@ def __init__(self):
self.after(250, lambda: print(self.winfo_width()))
self.after(250, lambda: print(self.winfo_height()))
'''
- x, y = 1120, 810
+ x, y = 1000, 770
self.minsize(x, y)
placeWindow(self, x, y)

0 comments on commit e7af1ea

Please sign in to comment.