- minor changes

This commit is contained in:
Marius Stanciu 2019-01-28 16:31:06 +02:00 committed by Marius S
parent e19af486b3
commit c80271935e
2 changed files with 2 additions and 6 deletions

View File

@ -569,6 +569,8 @@ class FlatCAMGUI(QtWidgets.QMainWindow):
self.options_combo.addItem("PROJ. OPTIONS ")
self.hlay1.addWidget(self.options_combo)
# disable this button as it may no longer be useful
self.options_combo.setVisible(False)
self.hlay1.addStretch()
self.general_scroll_area = VerticalScrollArea()

View File

@ -404,9 +404,6 @@ class FlatCAMGerber(FlatCAMObj, Gerber):
"isooverlap": 0.15,
"milling_type": "cl",
"combine_passes": True,
"ncctools": "1.0, 0.5",
"nccoverlap": 0.4,
"nccmargin": 1,
"noncoppermargin": 0.0,
"noncopperrounded": False,
"bboxmargin": 0.0,
@ -757,9 +754,6 @@ class FlatCAMGerber(FlatCAMObj, Gerber):
factor = Gerber.convert_units(self, units)
self.options['isotooldia'] *= factor
self.options['cutoutmargin'] *= factor
self.options['cutoutgapsize'] *= factor
self.options['noncoppermargin'] *= factor
self.options['bboxmargin'] *= factor
def plot(self, **kwargs):