- replaced some of the icons that did not looked Ok on the dark theme

- added a new toolbar button for the Copy object functionality
This commit is contained in:
Marius Stanciu
2019-10-16 04:13:12 +03:00
committed by Marius
parent dfc0b98181
commit 313acd0a25
25 changed files with 29 additions and 21 deletions

View File

@@ -753,7 +753,7 @@ class NonCopperClear(FlatCAMTool, Gerber):
tool_type_item = QtWidgets.QComboBox()
for item in self.tool_type_item_options:
tool_type_item.addItem(item)
tool_type_item.setStyleSheet('background-color: rgb(255,255,255)')
# tool_type_item.setStyleSheet('background-color: rgb(255,255,255)')
idx = tool_type_item.findText(tooluid_value['tool_type'])
tool_type_item.setCurrentIndex(idx)
@@ -761,9 +761,9 @@ class NonCopperClear(FlatCAMTool, Gerber):
operation_type = QtWidgets.QComboBox()
operation_type.addItem('iso_op')
operation_type.setStyleSheet('background-color: rgb(255,255,255)')
# operation_type.setStyleSheet('background-color: rgb(255,255,255)')
operation_type.addItem('clear_op')
operation_type.setStyleSheet('background-color: rgb(255,255,255)')
# operation_type.setStyleSheet('background-color: rgb(255,255,255)')
op_idx = operation_type.findText(tooluid_value['operation'])
operation_type.setCurrentIndex(op_idx)

View File

@@ -675,7 +675,7 @@ class ToolPaint(FlatCAMTool, Gerber):
tool_type_item = QtWidgets.QComboBox()
for item in self.tool_type_item_options:
tool_type_item.addItem(item)
tool_type_item.setStyleSheet('background-color: rgb(255,255,255)')
# tool_type_item.setStyleSheet('background-color: rgb(255,255,255)')
idx = tool_type_item.findText(tooluid_value['tool_type'])
tool_type_item.setCurrentIndex(idx)

View File

@@ -278,7 +278,7 @@ class SolderPaste(FlatCAMTool):
)
self.pp_combo = FCComboBox()
self.pp_combo.setStyleSheet('background-color: rgb(255,255,255)')
# self.pp_combo.setStyleSheet('background-color: rgb(255,255,255)')
self.gcode_form_layout.addRow(pp_label, self.pp_combo)
# ## Buttons