From 593cd516ce2cb2f7385b4b28682d47d1019179d9 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Tue, 9 Feb 2021 14:24:09 +0100 Subject: [PATCH] Fix typo in variable name Otherwise you can't open any files any more. How did we not see this earlier? Contributes to issue CURA-7996. --- 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 a00dc627a9..7772cc041a 100644 --- a/resources/qml/Cura.qml +++ b/resources/qml/Cura.qml @@ -692,7 +692,7 @@ UM.MainWindow function handleOpenFiles(selectedMultipleFiles, hasProjectFile, fileUrlList, projectFileUrlList) { // Make sure the files opened through the openFilesIncludingProjectDialog are added to the recent files list - openFilesIncludingProjectsDialog.addtoRecent = true; + openFilesIncludingProjectsDialog.addToRecent = true; // we only allow opening one project file if (selectedMultipleFiles && hasProjectFile)