mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-10 23:56:54 +02:00
[ui] minor qml warning fix
This commit is contained in:
parent
a37ecc189c
commit
c38f0c3fa3
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ MessageDialog {
|
|||
// alias to underlying compatibilityNodes model
|
||||
readonly property var nodesModel: uigraph.graph.compatibilityNodes
|
||||
// the total number of compatibility issues
|
||||
readonly property int issueCount: nodesModel.count
|
||||
readonly property int issueCount: (nodesModel != undefined) ? nodesModel.count : 0
|
||||
// the number of CompatibilityNodes that can be upgraded
|
||||
readonly property int upgradableCount: {
|
||||
var count = 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue