Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
beliboba committed Apr 12, 2024
1 parent 5c63014 commit 8a20637
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,10 @@ def setup(self):
root.bind('<Configure>', lambda event: self.center_box())

def zoom_in(self):
self.zoom_factor *= 1.1
self.zoom_factor *= 0.9

def zoom_out(self):
self.zoom_factor *= 0.9
self.zoom_factor *= 1.1

@staticmethod
def close_app():
Expand Down

0 comments on commit 8a20637

Please sign in to comment.