We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f134a20 commit 7dd3096Copy full SHA for 7dd3096
visualvm/heapviewer/src/org/graalvm/visualvm/heapviewer/model/HeapViewerNode.java
@@ -302,6 +302,9 @@ public final void willBeSorted() {
302
}
303
304
private boolean updateChildrenOnSort() {
305
+ // GH-113: make sure the ongoing children computation is restarted when sorting changes
306
+ synchronized (this) { if (currentWorker != null) return true; }
307
+
308
return children != null && children.length > 1 && children[children.length - 1] instanceof MoreNodesNode;
309
310
0 commit comments