Skip to content

Commit

Permalink
Fixed external subtitles not showing up after drag and drop.
Browse files Browse the repository at this point in the history
  • Loading branch information
RandomEngy committed Feb 7, 2019
1 parent 4c0804f commit 3ff5d32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion VidCoder/ViewModel/MainViewModel.cs
Expand Up @@ -483,7 +483,7 @@ public void HandlePaths(IList<string> paths, bool alwaysQueue = false)
if (subtitle != null)
{
this.CurrentSubtitles.SrtSubtitles.Add(subtitle);
this.SrtSubtitles.Add(new SrtSubtitleViewModel(this, subtitle));
StaticResolver.Resolve<IMessageBoxService>().Show(this, string.Format(MainRes.AddedSubtitleFromFile, item));
}
}
Expand Down

0 comments on commit 3ff5d32

Please sign in to comment.