From 7bf25a3be50d6e1e31095a2a3d263cbe068c17c0 Mon Sep 17 00:00:00 2001 From: Diego Prado Gesto Date: Mon, 8 Apr 2019 16:26:14 +0200 Subject: [PATCH] Also allow upper case CURAPACKAGE filenames --- 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 982f371a7b..b6f1268e7f 100644 --- a/resources/qml/Cura.qml +++ b/resources/qml/Cura.qml @@ -211,7 +211,7 @@ UM.MainWindow for (var i = 0; i < drop.urls.length; i++) { var filename = drop.urls[i]; - if (filename.endsWith(".curapackage")) + if (filename.toLowerCase().endsWith(".curapackage")) { // Try to install plugin & close. CuraApplication.getPackageManager().installPackageViaDragAndDrop(filename);