mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-06 10:18:42 +02:00
[Distortion Viewer] sfmPath empty by default
This commit is contained in:
parent
e42c9577b6
commit
fbaf76f541
1 changed files with 2 additions and 2 deletions
|
@ -48,14 +48,14 @@ AliceVision.FloatImageViewer {
|
||||||
property int subdivisions: 5;
|
property int subdivisions: 5;
|
||||||
property int pointsNumber: (subdivisions + 1) * (subdivisions + 1);
|
property int pointsNumber: (subdivisions + 1) * (subdivisions + 1);
|
||||||
|
|
||||||
property string sfmPath: "null"
|
property string sfmPath: ""
|
||||||
|
|
||||||
function updateSfmPath() {
|
function updateSfmPath() {
|
||||||
var activeNode = _reconstruction.activeNodes.get('sfm').node;
|
var activeNode = _reconstruction.activeNodes.get('sfm').node;
|
||||||
|
|
||||||
if(!activeNode)
|
if(!activeNode)
|
||||||
{
|
{
|
||||||
root.sfmPath = "null";
|
root.sfmPath = "";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue