(node: LayoutNode)
| 738 | const magnifiedNodeSize = this.getter(this.magnifiedNodeSizeAtom); |
| 739 | |
| 740 | const callback = (node: LayoutNode) => |
| 741 | this.updateTreeHelper( |
| 742 | node, |
| 743 | newAdditionalProps, |
| 744 | newLeafs, |
| 745 | resizeHandleSizePx, |
| 746 | magnifiedNodeSize, |
| 747 | boundingRect, |
| 748 | resizeAction |
| 749 | ); |
| 750 | if (balanceTree) this.treeState.rootNode = balanceNode(this.treeState.rootNode, callback); |
| 751 | else walkNodes(this.treeState.rootNode, callback); |
| 752 |
nothing calls this directly
no test coverage detected