diff --git a/meshroom/ui/qml/Viewer3D/MediaLibrary.qml b/meshroom/ui/qml/Viewer3D/MediaLibrary.qml index 5b644a38..9f7cd9e4 100644 --- a/meshroom/ui/qml/Viewer3D/MediaLibrary.qml +++ b/meshroom/ui/qml/Viewer3D/MediaLibrary.qml @@ -246,7 +246,7 @@ Entity { } function updateCacheAndModel(forceRequest) { - // don't cache explicitely unloaded media + // don't cache explicitly unloaded media if(model.requested && object && dependencyReady) { // cache current object if(cache.add(Filepath.urlToString(mediaLoader.source), object)); diff --git a/meshroom/ui/qml/Viewer3D/MediaLoader.qml b/meshroom/ui/qml/Viewer3D/MediaLoader.qml index fd48f6c8..38a50fd1 100644 --- a/meshroom/ui/qml/Viewer3D/MediaLoader.qml +++ b/meshroom/ui/qml/Viewer3D/MediaLoader.qml @@ -31,7 +31,7 @@ import Utils 1.0 return; } - // clear previously created objet if any + // clear previously created object if any if(object) { object.destroy(); object = null;