- fixed the issue with GUI entries content being deselected on right click in the box in order to copy the value

This commit is contained in:
Marius Stanciu
2019-08-23 21:01:23 +03:00
committed by Marius
parent 1d632c6396
commit e35cf7f02c
4 changed files with 29 additions and 30 deletions

View File

@@ -316,11 +316,12 @@ class NonCopperClear(FlatCAMTool, Gerber):
], orientation='vertical', stretch=False)
self.reference_label = QtWidgets.QLabel(_("Reference:"))
self.reference_label.setToolTip(
_("When choosing the 'Itself' option the non copper clearing extent\n"
_("- 'Itself' - the non copper clearing extent\n"
"is based on the object that is copper cleared.\n "
"Area Selection - left mouse click to start selection of the area to be painted.\n"
"Choosing the 'Reference Object' option will do non copper clearing within the box\n"
"specified by another object different than the one that is copper cleared.")
"- 'Area Selection' - left mouse click to start selection of the area to be painted.\n"
"Keeping a modifier key pressed (CTRL or SHIFT) will allow to add multiple areas.\n"
"- 'Reference Object' - will do non copper clearing within the area\n"
"specified by another object.")
)
grid3.addWidget(self.reference_label, 9, 0)
grid3.addWidget(self.reference_radio, 9, 1)

View File

@@ -297,12 +297,12 @@ class ToolPaint(FlatCAMTool, Gerber):
{"label": _("Reference Object"), "value": "ref"}
], orientation='vertical', stretch=False)
self.selectmethod_combo.setToolTip(
_("How to select the polygons to paint.<BR>"
"Options:<BR>"
"- <B>Single Polygons</B>: left mouse click on the polygon to be painted.<BR>"
"- <B>Area Selection</B>: left mouse click to start selection of the area to be painted.<BR>"
"- <B>All Polygons</B>: paint all polygons.<BR>"
"- <B>Reference Object</B>: paint an area described by an external reference object.")
_("How to select Polygons to be painted.\n\n"
"- 'Area Selection' - left mouse click to start selection of the area to be painted.\n"
"Keeping a modifier key pressed (CTRL or SHIFT) will allow to add multiple areas.\n"
"- 'All Polygons' - the Paint will start after click.\n"
"- 'Reference Object' - will do non copper clearing within the area\n"
"specified by another object.")
)
grid3.addWidget(self.selectmethod_combo, 7, 1)
@@ -320,7 +320,6 @@ class ToolPaint(FlatCAMTool, Gerber):
self.box_combo_type.addItem(_("Geometry Reference Box Object"))
form1.addRow(self.box_combo_type_label, self.box_combo_type)
self.box_combo_label = QtWidgets.QLabel('%s:' % _("Ref. Object"))
self.box_combo_label.setToolTip(
_("The FlatCAM object to be used as non copper clearing reference.")
@@ -339,14 +338,11 @@ class ToolPaint(FlatCAMTool, Gerber):
# GO Button
self.generate_paint_button = QtWidgets.QPushButton(_('Create Paint Geometry'))
self.generate_paint_button.setToolTip(
_("After clicking here, click inside<BR>"
"the polygon you wish to be painted if <B>Single</B> is selected.<BR>"
"If <B>Area</B> is selected, then the selection of the area to be painted<BR>"
"will be initiated by a first click and finished by the second mouse click.<BR>"
"If <B>All</B> is selected then the Paint will start after click.<BR>"
"If <B>Ref</B> is selected then the Paint will start after click,<BR>"
"and the painted area will be described by a selected object.<BR>"
"A new Geometry object with the tool paths will be created.")
_("- 'Area Selection' - left mouse click to start selection of the area to be painted.\n"
"Keeping a modifier key pressed (CTRL or SHIFT) will allow to add multiple areas.\n"
"- 'All Polygons' - the Paint will start after click.\n"
"- 'Reference Object' - will do non copper clearing within the area\n"
"specified by another object.")
)
self.tools_box.addWidget(self.generate_paint_button)