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()
+2 -2
View File
@@ -67,8 +67,8 @@ public:
int ArraySize() const;
void ArrayAppend(bool undoable = false);
void ArrayRemoveLast(bool undoable = false);
void ArrayAppend();
void ArrayRemoveLast();
int GetArrayIndexFromCacheIndex(int index) const
{