ExportProjectDialog: fixed crash when exporting whole project as one track

We have to use the new semantics of the ProjectRenderer management when
exporting the whole project as one track as well. Otherwise the program
crashed as it tried to utilize the ProjectRenderer instance twice.
This commit is contained in:
Tobias Doerffel
2012-11-25 11:47:18 +01:00
parent 4a962c58d9
commit 9e08849d63

View File

@@ -308,7 +308,8 @@ void exportProjectDialog::startBtnClicked()
}
else
{
render(prepRender());
prepRender();
popRender();
}
}