- fixed an if/else selection in the AppObject.on_object_created() that made the plotting of CNCJob objects to be done twice and second time will disregard the Plot Kind Preference value
This commit is contained in:
@@ -8197,7 +8197,7 @@ class App(QtCore.QObject):
|
||||
"""
|
||||
dec_nr = dec if dec is not None else self.decimals
|
||||
|
||||
return float('%.*f' % (dec_nr, val))
|
||||
return float('%.*f' % (dec_nr, float(val)))
|
||||
|
||||
|
||||
class ArgsThread(QtCore.QObject):
|
||||
|
||||
Reference in New Issue
Block a user