- reverted change in tool dia being able to take only positive values in Gerber Object UI

This commit is contained in:
Marius Stanciu 2019-10-20 02:58:43 +03:00 committed by Marius
parent 8b785699ae
commit 8797793472
2 changed files with 2 additions and 1 deletions

View File

@ -13,6 +13,7 @@ CAD program, and create G-Code for Isolation routing.
- fixed a small bug in BETA status change
- updated the About FlatCAM window
- reverted change in tool dia being able to take only positive values in Gerber Object UI
18.10.2019

View File

@ -342,7 +342,7 @@ class GerberObjectUI(ObjectUI):
)
tdlabel.setMinimumWidth(90)
self.iso_tool_dia_entry = FCDoubleSpinner()
self.iso_tool_dia_entry.set_range(0, 9999.9999)
self.iso_tool_dia_entry.set_range(-9999.9999, 9999.9999)
self.iso_tool_dia_entry.set_precision(self.decimals)
self.iso_tool_dia_entry.setSingleStep(0.1)