lmms
lmms copied to clipboard
Set song modified when adding journal checkpoint
Song::setModified() is called 150+ times. I bet we could get rid of many of them by simply doing it from the journal:
void ProjectJournal::addJournalCheckPoint(JournallingObject *jo)
{
// saveState etc...
Engine::getSong()->setModified();
}