node: removed dumb undoable param

This commit is contained in:
itsmattkc
2023-02-19 11:36:46 -08:00
parent 9745b536f6
commit b8ee27e1cb
7 changed files with 71 additions and 84 deletions
+4 -4
View File
@@ -167,14 +167,14 @@ int TrackList::ArraySize() const
return parent()->InputArraySize(track_input());
}
void TrackList::ArrayAppend(bool undoable)
void TrackList::ArrayAppend()
{
parent()->InputArrayAppend(track_input(), undoable);
parent()->InputArrayAppend(track_input());
}
void TrackList::ArrayRemoveLast(bool undoable)
void TrackList::ArrayRemoveLast()
{
parent()->InputArrayRemoveLast(track_input(), undoable);
parent()->InputArrayRemoveLast(track_input());
}
void TrackList::UpdateTotalLength()