Skip to content

Commit

Permalink
added version number to window title
Browse files Browse the repository at this point in the history
  • Loading branch information
jwlkns committed Jun 2, 2023
1 parent abd8509 commit ecb6a6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/aoe2de_patcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ def __init__(self):
self.logic = Logic()
self.patch_list = list(reversed(self.logic.get_patch_list()))

self.version = 2.5
self.version = 2.6

# Set up GUI
self.window = tk.Tk()
self.window.title("AoE2DE Patcher")
self.window.title(f"AoE2DE Patcher v{self.version}")
self.window.minsize(width=900, height=500)
self.window.resizable(0, 0)

Expand Down

0 comments on commit ecb6a6d

Please sign in to comment.