Skip to content

Commit

Permalink
qtvcp -set the default jog rates after reading the INI
Browse files Browse the repository at this point in the history
I forgot to move this from the Gstat subclass.
Now Qtdragon exceta should start with default jog rates gtom the INI again
  • Loading branch information
c-morley committed Sep 26, 2024
1 parent 033f83d commit b704d83
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/emc/usr_intf/qtvcp/qtvcp.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,11 @@ def __init__(self):
self.INFO = Info()
self.INFO.update(ini=i)
self.STATUS = Status()

# set default jog rates from INI settings
self.STATUS.current_jog_rate = self.INFO.DEFAULT_LINEAR_JOG_VEL
self.STATUS.angular_jog_velocity = self.INFO.DEFAULT_ANGULAR_JOG_VEL

self.PATH = Path()

error = self.PATH.set_paths(basepath, bool(SCRN_INIPATH), i)
Expand Down

0 comments on commit b704d83

Please sign in to comment.