fixed bug in ripple remove undo command where blocks deleted at the start of

the track would be restored at the end
This commit is contained in:
itsmattkc
2020-01-06 18:13:56 +11:00
parent d3ed7f9863
commit e71697f693
+1 -1
View File
@@ -102,7 +102,7 @@ void TrackRippleRemoveBlockCommand::undo()
if (before_) {
track_->InsertBlockAfter(block_, before_);
} else {
track_->AppendBlock(block_);
track_->PrependBlock(block_);
}
}