Fix loading of files

This commit is contained in:
Jaime van Kessel 2022-04-01 09:46:20 +02:00
parent 814b706641
commit 19d82a770c

View file

@ -623,12 +623,12 @@ UM.MainWindow
{
// Because several implementations of the file dialog only update the folder
// when it is explicitly set.
var f = folder;
folder = f;
var f = currentFolder;
currentFolder = f;
CuraApplication.setDefaultPath("dialog_load_path", folder);
CuraApplication.setDefaultPath("dialog_load_path", currentFolder);
handleOpenFileUrls(fileUrls);
handleOpenFileUrls(selectedFiles);
}
// Yeah... I know... it is a mess to put all those things here.