1
Fork 0

Add missing model::swap() call in ActionRecorder::clearChannel

This commit is contained in:
gvnnz 2023-06-18 12:18:18 +02:00
parent e45df80086
commit 1408ad7947
1 changed files with 1 additions and 0 deletions

View File

@ -473,6 +473,7 @@ void ActionRecorder::clearChannel(ID channelId)
{
m_model.get().channels.get(channelId).hasActions = false;
m_model.get().actions.clearChannel(channelId);
m_model.swap(model::SwapType::HARD);
}
void ActionRecorder::clearActions(ID channelId, int type)