mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-07-30 19:32:00 +08:00
Also allow upper case CURAPACKAGE filenames
This commit is contained in:
parent
fe14024620
commit
7bf25a3be5
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user