This commit is contained in:
Roxanne Skelly 2019-05-14 16:39:39 -07:00
parent fad7fa4c07
commit a7595496f6
5 changed files with 7 additions and 6 deletions

View file

@ -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