diff --git a/Change_Log.txt b/Change_Log.txt index 2e5f8f8..1d2f1c6 100755 --- a/Change_Log.txt +++ b/Change_Log.txt @@ -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" + diff --git a/k40_whisperer.py b/k40_whisperer.py index 90e4831..af2847d 100755 --- a/k40_whisperer.py +++ b/k40_whisperer.py @@ -18,7 +18,7 @@ """ app_name = "K40 Whisperer" -version = '0.57' +version = '0.58' title_text = app_name+" V"+version import sys @@ -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)