- added a new parameter in the Edit -> Preferences -> App Preferences named Geo Tolerance. This parameter control the level of geometric detail throughout FlatCAM. It directly influence the effect of Circle Steps parameter.
This commit is contained in:
@@ -81,7 +81,11 @@ class FlatCAMObj(QtCore.QObject):
|
||||
self.muted_ui = False
|
||||
self.deleted = False
|
||||
|
||||
self._drawing_tolerance = 0.01
|
||||
try:
|
||||
self._drawing_tolerance = float(self.app.defaults["global_tolerance"]) if \
|
||||
self.app.defaults["global_tolerance"] else 0.01
|
||||
except ValueError:
|
||||
self._drawing_tolerance = 0.01
|
||||
|
||||
self.isHovering = False
|
||||
self.notHovering = True
|
||||
|
||||
Reference in New Issue
Block a user