- fixed a bug in FCDoubleSpinner GUI element

- added a new parameter in NCC tool named offset. If the offset is used then the copper clearing will finish to a set distance of the copper features
This commit is contained in:
Marius Stanciu
2019-08-13 11:32:58 +03:00
committed by Marius
parent 0686e77f99
commit eb4f504911
5 changed files with 120 additions and 12 deletions

View File

@@ -1609,7 +1609,7 @@ class FCDoubleSpinner(QtWidgets.QDoubleSpinBox):
def set_value(self, val):
try:
k = int(val)
k = float(val)
except Exception as e:
log.debug(str(e))
return