nodeview/nodepanel: implemented select all/deselect all functionality

This commit is contained in:
itsmattkc
2020-02-23 11:38:30 +11:00
parent 6facdc1f1b
commit 0a74714f5d
4 changed files with 34 additions and 0 deletions
+10
View File
@@ -44,6 +44,16 @@ void NodePanel::SetGraph(NodeGraph *graph)
node_view_->SetGraph(graph);
}
void NodePanel::SelectAll()
{
node_view_->SelectAll();
}
void NodePanel::DeselectAll()
{
node_view_->DeselectAll();
}
void NodePanel::DeleteSelected()
{
node_view_->DeleteSelected();