Skip to content

Commit

Permalink
Enable the posibility to resize windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Corne2Plum3 committed Oct 30, 2021
1 parent 21f0353 commit f73f69e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,6 @@ def openWindow(self):
# 1. Create and init the window
self.window.title(app_name) # set window title
self.window.geometry("808x538") # set window size
self.window.resizable(width=False, height=False) # the window can't be resized

# 2. Create and set the variables widgets
# set the variables
Expand Down Expand Up @@ -988,7 +987,6 @@ def openWindow(self):
self.window = tk.Toplevel(self.master.window)
self.window.title("New difficulty")
self.window.geometry("350x255")
self.window.resizable(width=False, height=False) # the window can't be resized

# widgets variables defined in __init__()

Expand Down

0 comments on commit f73f69e

Please sign in to comment.