adds the sendmeshname functionality to the DropArea

fixes: issue CURA-179
This commit is contained in:
Tamara Hogenhout 2015-09-18 13:49:49 +02:00
parent 6a91490910
commit 0765dbe694

View File

@ -292,6 +292,10 @@ UM.MainWindow
for(var i in drop.urls)
{
UM.MeshFileHandler.readLocalFile(drop.urls[i]);
if (i == drop.urls.length - 1)
{
openDialog.sendMeshName(drop.urls[i].toString())
}
}
}
}