Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to v 0.58 #17

Merged
merged 1 commit into from
May 4, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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