mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-03 00:38:41 +02:00
use Filepath.stringToUrl instead of "file:///"+
This commit is contained in:
parent
4ddd25fb73
commit
5c279f3584
1 changed files with 1 additions and 2 deletions
|
@ -2,7 +2,6 @@ import QtQuick 2.7
|
|||
import QtQuick.Controls 2.0
|
||||
import QtQuick.Layouts 1.3
|
||||
import MaterialIcons 2.2
|
||||
|
||||
import Controls 1.0
|
||||
|
||||
FocusScope {
|
||||
|
@ -41,7 +40,7 @@ FocusScope {
|
|||
if (type == "image") {
|
||||
return root.source;
|
||||
} else {
|
||||
return "file:///"+_reconstruction.depthMap.internalFolder+_reconstruction.selectedViewId+"_"+type+".exr";
|
||||
return Filepath.stringToUrl(_reconstruction.depthMap.internalFolder+_reconstruction.selectedViewId+"_"+type+".exr");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue