name every undo command

This commit is contained in:
itsmattkc
2023-03-12 00:49:03 -08:00
parent 019f095ee4
commit 2c2df99963
46 changed files with 172 additions and 122 deletions
+9
View File
@@ -78,6 +78,15 @@ InputFlags NodeInput::GetFlags() const
}
}
QString NodeInput::GetInputName() const
{
if (IsValid()) {
return node_->GetInputName(input_);
} else {
return QString();
}
}
Node *NodeInput::GetConnectedOutput() const
{
if (IsValid()) {