Skip to content
Snippets Groups Projects
Commit 8091060d authored by luyikei's avatar luyikei
Browse files

Workflow: Don't save all tracks including ones that have no clips

parent 70814fb7
No related branches found
No related tags found
No related merge requests found
......@@ -361,9 +361,14 @@ MainWorkflow::canRender()
void
MainWorkflow::preSave()
{
int maxTrackId = 0;
for ( auto it = m_clips.cbegin(); it != m_clips.cend(); ++it )
maxTrackId = qMax( it.key(), maxTrackId );
QVariantList l;
for ( auto track : m_tracks )
l << track->toVariant();
for ( int i = 0; i < maxTrackId + 1; ++i )
l << m_tracks[i]->toVariant();
m_settings->value( "tracks" )->set( l );
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment