Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGhostkeeper <rubend@tutanota.com>2021-02-09 16:24:09 +0300
committerGhostkeeper <rubend@tutanota.com>2021-02-09 16:24:09 +0300
commit593cd516ce2cb2f7385b4b28682d47d1019179d9 (patch)
treee1f5bc2c5ae03a461366ca3e27541cf3b50fb561 /resources/qml/Cura.qml
parentec986990a2dc97f0d532595a50e5175edc131b8c (diff)
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.
Diffstat (limited to 'resources/qml/Cura.qml')
-rw-r--r--resources/qml/Cura.qml2
1 files changed, 1 insertions, 1 deletions
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)