Skip to content

Commit

Permalink
swap zoom in and out
Browse files Browse the repository at this point in the history
  • Loading branch information
jonorthwash committed Oct 9, 2020
1 parent 8aaef92 commit d3ffb7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ultratrace/modules/dicom.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,9 +185,9 @@ def grid(self):
self.app.framesNextBtn.grid( row=0, column=3 )

#self.header.grid(row=0, column=0, columnspan=5)
self.zoomInBtn.grid( row=0, column=1)
self.zoomInBtn.grid( row=0, column=3)
self.zoomResetBtn.grid( row=0, column=2 )
self.zoomOutBtn.grid( row=0, column=3)
self.zoomOutBtn.grid( row=0, column=1)
self.app.Control.grid()

def grid_remove(self):
Expand Down

0 comments on commit d3ffb7b

Please sign in to comment.