mirror of https://github.com/odrling/Aegisub
Fix "keyframes file not found" error always occurring on subs file load, when no keyframes file was used.
Originally committed to SVN as r1603.
This commit is contained in:
parent
509732b0c2
commit
c306eef796
|
@ -884,7 +884,9 @@ void FrameMain::SynchronizeProject(bool fromSubs) {
|
|||
}
|
||||
|
||||
// Keyframes
|
||||
KeyFrameFile::Load(curSubsKeyframes);
|
||||
if (curSubsKeyframes != _T("")) {
|
||||
KeyFrameFile::Load(curSubsKeyframes);
|
||||
}
|
||||
|
||||
// Audio
|
||||
if (curSubsAudio != audioBox->audioName) {
|
||||
|
|
Loading…
Reference in New Issue