(view: GraphView)
| 646 | } |
| 647 | |
| 648 | private hideSelectedAction(view: GraphView): void { |
| 649 | for (const node of view.graph.nodes()) { |
| 650 | if (view.state.selection.isSelected(node)) { |
| 651 | node.visible = false; |
| 652 | } |
| 653 | } |
| 654 | view.nodeSelectionHandler.clear(); |
| 655 | view.focusOnSvg(); |
| 656 | } |
| 657 | |
| 658 | private zoomSelectionAction(view: GraphView): void { |
| 659 | view.viewSelection(); |
no test coverage detected