Fix reloading the video provider after settings changes

This commit is contained in:
Thomas Goyne 2014-05-24 06:44:45 -07:00
parent 9ca61a2fb5
commit d73790805a
1 changed files with 4 additions and 2 deletions

View File

@ -70,8 +70,10 @@ void Project::ReloadAudio() {
}
void Project::ReloadVideo() {
if (video_provider)
LoadAudio(video_file);
if (video_provider) {
DoLoadVideo(video_file);
context->videoController->JumpToFrame(context->videoController->GetFrameN());
}
}
void Project::ShowError(wxString const& message) {