- modified the default drawing tolerance from 0.01 to 0.001

This commit is contained in:
Marius Stanciu
2020-12-11 19:30:31 +02:00
committed by Marius
parent d8b22f045a
commit f613c8e9a6
3 changed files with 4 additions and 3 deletions

View File

@@ -107,9 +107,9 @@ class FlatCAMObj(QtCore.QObject):
try:
self._drawing_tolerance = float(self.app.defaults["global_tolerance"]) if \
self.app.defaults["global_tolerance"] else 0.01
self.app.defaults["global_tolerance"] else 0.001
except ValueError:
self._drawing_tolerance = 0.01
self._drawing_tolerance = 0.001
self.isHovering = False
self.notHovering = True