- fixed the HPGL code geometry rendering when travel

- fixed the message box layout when asking to save the current work
- made sure that whenever the HPGL postprocessor is selected the Toolchange is always ON and the MultiDepth is OFF
- the HPGL postprocessor entry is not allowed in Excellon Object postprocessor selection combobox as it is only applicable for Geometry
This commit is contained in:
Marius Stanciu
2019-01-20 02:46:42 +02:00
committed by Marius S
parent b9cbe97f4d
commit 7ea6ee4a85
5 changed files with 56 additions and 14 deletions

View File

@@ -882,7 +882,7 @@ class GeometryObjectUI(ObjectUI):
self.toolchangeg_cb = FCCheckBox("Tool change")
self.toolchangeg_cb.setToolTip(
"Include tool-change sequence\n"
"in G-Code (Pause for tool change)."
"in the Machine Code (Pause for tool change)."
)
self.toolchangez_entry = LengthEntry()
@@ -982,7 +982,7 @@ class GeometryObjectUI(ObjectUI):
pp_label = QtWidgets.QLabel("PostProcessor:")
pp_label.setToolTip(
"The Postprocessor file that dictates\n"
"Gcode output."
"the Machine Code (like GCode, RML, HPGL) output."
)
self.grid3.addWidget(pp_label, 16, 0)
self.pp_geometry_name_cb = FCComboBox()