DivSongTimestamps, part 6

replace walkSong with calcSongTimestamps in GUI
This commit is contained in:
tildearrow 2025-10-29 04:53:00 -05:00
parent c1175bcc35
commit 3b93c4e0ec
4 changed files with 14 additions and 20 deletions

View file

@ -259,7 +259,7 @@ void FurnaceGUI::makeUndo(ActionType action, UndoRegion region) {
if (undoHist.size()>settings.maxUndoSteps) undoHist.pop_front();
}
if (shallWalk) {
e->walkSong(loopOrder,loopRow,loopEnd);
e->calcSongTimestamps();
}
// garbage collection
@ -2119,7 +2119,7 @@ void FurnaceGUI::doUndo() {
}
}
}
e->walkSong(loopOrder,loopRow,loopEnd);
e->calcSongTimestamps();
break;
}
@ -2197,7 +2197,7 @@ void FurnaceGUI::doRedo() {
}
}
}
e->walkSong(loopOrder,loopRow,loopEnd);
e->calcSongTimestamps();
break;
}