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

View file

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