From 07ed1bedc3a88e22f1e8868aa8d1b67363bf7fc6 Mon Sep 17 00:00:00 2001 From: Jack Ha Date: Wed, 5 Apr 2017 16:07:02 +0200 Subject: [PATCH] Fix boo boo with open multi files including project files. --- resources/qml/Cura.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/qml/Cura.qml b/resources/qml/Cura.qml index b425432a00..b0e6d09080 100755 --- a/resources/qml/Cura.qml +++ b/resources/qml/Cura.qml @@ -774,7 +774,7 @@ UM.MainWindow // we only allow opening one project file if (selectedMultipleFiles && hasProjectFile) { - openFilesIncludingProjectsDialog.fileUrlList = fileUrlList.slice(); + openFilesIncludingProjectsDialog.fileUrls = fileUrlList.slice(); openFilesIncludingProjectsDialog.show(); return; }