Make it possible to skip project file check in readLocalFile()

CURA-5203
This commit is contained in:
Lipu Fei 2018-04-10 11:40:22 +02:00
parent 95c6258d0f
commit 95f4515e93
4 changed files with 6 additions and 6 deletions

View file

@ -1557,8 +1557,8 @@ class CuraApplication(QtApplication):
openProjectFile = pyqtSignal(QUrl, arguments = ["project_file"]) # Emitted when a project file is about to open.
@pyqtSlot(QUrl)
def readLocalFile(self, file):
@pyqtSlot(QUrl, bool)
def readLocalFile(self, file, skip_project_file_check = False):
if not file.isValid():
return
@ -1569,7 +1569,7 @@ class CuraApplication(QtApplication):
self.deleteAll()
break
if self.checkIsValidProjectFile(file):
if not skip_project_file_check and self.checkIsValidProjectFile(file):
self.callLater(self.openProjectFile.emit, file)
return