From d73790805a8f0dcec725ce9d1abd7efd62ce656f Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Sat, 24 May 2014 06:44:45 -0700 Subject: [PATCH] Fix reloading the video provider after settings changes --- src/project.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/project.cpp b/src/project.cpp index c5fdbf7ec..b06c896e1 100644 --- a/src/project.cpp +++ b/src/project.cpp @@ -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) {