Skip to content

Commit

Permalink
Update to v 0.58
Browse files Browse the repository at this point in the history
Fixed problem with right mouse click motions that occurred when using "home in upper right"
  • Loading branch information
rsre committed May 4, 2021
1 parent cdb7c35 commit 4288431
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 4 additions & 0 deletions Change_Log.txt
Original file line number Diff line number Diff line change
Expand Up @@ -291,3 +291,7 @@ Version 0.57:
- Fixed problem with start position (only occurred when using a custom "x scale" factor and "home in upper right")
- Added Command line option to enable debug mode
- Some other minor change to the way icons and internal images are handled (no change for user)

Version 0.58:
- Fixed problem with right mouse click motions that occurred when using "home in upper right"

4 changes: 1 addition & 3 deletions k40_whisperer.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"""
app_name = "K40 Whisperer"
version = '0.57'
version = '0.58'
title_text = app_name+" V"+version

import sys
Expand Down Expand Up @@ -1059,8 +1059,6 @@ def right_mousePanStop(self,event):

dx = can_dx*self.PlotScale
dy = can_dy*self.PlotScale
if self.HomeUR.get():
dx = -dx

DX = round(dx*1000)
DY = round(dy*1000)
Expand Down

0 comments on commit 4288431

Please sign in to comment.