Added Prepend to G-Code to default settings. This solves #115.

This commit is contained in:
Juan Pablo Caram
2015-08-31 10:19:46 -04:00
parent 0077aaea14
commit 40e8445f2d
2 changed files with 16 additions and 1 deletions

View File

@@ -748,7 +748,18 @@ class CNCJobOptionsGroupUI(OptionsGroupUI):
)
self.layout.addWidget(self.export_gcode_label)
# Append text to Gerber
# Prepend to G-Code
prependlabel = QtGui.QLabel('Prepend to G-Code:')
prependlabel.setToolTip(
"Type here any G-Code commands you would\n"
"like to add at the beginning of the G-Code file."
)
self.layout.addWidget(prependlabel)
self.prepend_text = FCTextArea()
self.layout.addWidget(self.prepend_text)
# Append text to G-Code
appendlabel = QtGui.QLabel('Append to G-Code:')
appendlabel.setToolTip(
"Type here any G-Code commands you would\n"