mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 12:28:02 +02:00
CR fixes
This commit is contained in:
parent
fad7fa4c07
commit
a7595496f6
5 changed files with 7 additions and 6 deletions
|
@ -149,16 +149,17 @@ Item {
|
|||
}
|
||||
StatText {
|
||||
visible: { root.eventQueueDebuggingOn && root.expanded }
|
||||
text: { if (root.eventQueueDebuggingOn)
|
||||
text: { if (root.eventQueueDebuggingOn) {
|
||||
return "Event Queue Depth\n " +
|
||||
"Main:\t" + root.mainThreadQueueDepth + "\n" +
|
||||
"NodeList:\t" + root.nodeListThreadQueueDepth;
|
||||
else
|
||||
} else {
|
||||
return "";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
width: pingCol.width + 8
|
||||
|
|
Loading…
Reference in a new issue