- 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

@@ -88,7 +88,7 @@ class App(QtCore.QObject):
# Version
version = 8.902
version_date = "2019/01/19"
version_date = "2019/01/20"
beta = True
# URL for update checks and statistics
@@ -2093,9 +2093,9 @@ class App(QtCore.QObject):
if self.collection.get_list():
msgbox = QtWidgets.QMessageBox()
# msgbox.setText("<B>Save changes ...</B>")
msgbox.setInformativeText("There are files/objects opened in FlatCAM. "
"\n\n"
"Do you want to Save the project?")
msgbox.setText("There are files/objects opened in FlatCAM. "
"\n"
"Do you want to Save the project?")
msgbox.setWindowTitle("Save changes")
msgbox.setWindowIcon(QtGui.QIcon('share/save_as.png'))
msgbox.setStandardButtons(QtWidgets.QMessageBox.Cancel | QtWidgets.QMessageBox.Ok)
@@ -2229,9 +2229,9 @@ class App(QtCore.QObject):
if self.collection.get_list():
msgbox = QtWidgets.QMessageBox()
# msgbox.setText("<B>Save changes ...</B>")
msgbox.setInformativeText("There are files/objects opened in FlatCAM. "
"\n\n"
"Do you want to Save the project?")
msgbox.setText("There are files/objects opened in FlatCAM. "
"\n"
"Do you want to Save the project?")
msgbox.setWindowTitle("Save changes")
msgbox.setWindowIcon(QtGui.QIcon('share/save_as.png'))
msgbox.setStandardButtons(QtWidgets.QMessageBox.Cancel | QtWidgets.QMessageBox.Ok)
@@ -3962,9 +3962,9 @@ class App(QtCore.QObject):
if self.collection.get_list():
msgbox = QtWidgets.QMessageBox()
# msgbox.setText("<B>Save changes ...</B>")
msgbox.setInformativeText("There are files/objects opened in FlatCAM. "
"Creating a New project will delete them.\n\n"
"Do you want to Save the project?")
msgbox.setText("There are files/objects opened in FlatCAM.\n"
"Creating a New project will delete them.\n"
"Do you want to Save the project?")
msgbox.setWindowTitle("Save changes")
msgbox.setWindowIcon(QtGui.QIcon('share/save_as.png'))
msgbox.setStandardButtons(QtWidgets.QMessageBox.Cancel | QtWidgets.QMessageBox.Ok)