mirror of https://github.com/odrling/Aegisub
Fix reloading the video provider after settings changes
This commit is contained in:
parent
9ca61a2fb5
commit
d73790805a
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue