()
| 178 | } |
| 179 | |
| 180 | updateLayout() { |
| 181 | const nodeLayout = this.node.getNodeLayout() |
| 182 | for (const component of nodeLayout.components) { |
| 183 | if ( |
| 184 | component.type === LayoutComponentType.CHILD_SET_TREE_BRACKETS || |
| 185 | component.type === LayoutComponentType.CHILD_SET_TREE |
| 186 | ) { |
| 187 | this.renderedChildSets[component.identifier].updateLayout(component) |
| 188 | } |
| 189 | } |
| 190 | } |
| 191 | |
| 192 | calculateDimensions(x: number, y: number, selection: NodeSelection, marginApplied = false, label?: string) { |
| 193 | this.marginTop = 0 |
no test coverage detected