mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-03 16:58:24 +02:00
[ui] Viewer: fix Node.isComputed is a property
This commit is contained in:
parent
06faca31a3
commit
0f07dfe482
3 changed files with 5 additions and 5 deletions
|
@ -382,7 +382,7 @@ FocusScope {
|
|||
|
||||
Loader {
|
||||
id: msfmDataLoader
|
||||
// active: _reconstruction.sfm && _reconstruction.sfm.isComputed()
|
||||
// active: _reconstruction.sfm && _reconstruction.sfm.isComputed
|
||||
|
||||
property bool isUsed: displayFeatures.checked || displaySfmStatsView.checked || displaySfmDataGlobalStats.checked
|
||||
property var activeNode: _reconstruction.sfm
|
||||
|
@ -628,7 +628,7 @@ FocusScope {
|
|||
smooth: false
|
||||
flat: true
|
||||
checkable: enabled
|
||||
enabled: _reconstruction.sfm && _reconstruction.sfm.isComputed() && _reconstruction.selectedViewId >= 0
|
||||
enabled: _reconstruction.sfm && _reconstruction.sfm.isComputed && _reconstruction.selectedViewId >= 0
|
||||
onCheckedChanged: {
|
||||
if(checked == true)
|
||||
{
|
||||
|
@ -652,7 +652,7 @@ FocusScope {
|
|||
smooth: false
|
||||
flat: true
|
||||
checkable: enabled
|
||||
enabled: _reconstruction.sfm && _reconstruction.sfm.isComputed()
|
||||
enabled: _reconstruction.sfm && _reconstruction.sfm.isComputed
|
||||
onCheckedChanged: {
|
||||
if(checked == true)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue