Skip to content

Commit

Permalink
fix zoom bug
Browse files Browse the repository at this point in the history
  • Loading branch information
afourmy committed Sep 19, 2017
1 parent 371e25c commit 64fc553
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyNMS/controller.py
Expand Up @@ -530,11 +530,11 @@ def ellipse(self):
self.creation_mode = 'ellipse'

@update_paths
def zoom_in(self):
def zoom_in(self, _):
self.view.zoom_in()

@update_paths
def zoom_out(self):
def zoom_out(self, _):
self.view.zoom_out()

@update_paths
Expand Down

0 comments on commit 64fc553

Please sign in to comment.