From: Rodeo Date: Tue, 2 Apr 2013 22:33:56 +0000 (+0000) Subject: WinGui: default to burn-in for VobSub too (when the container is MP4). X-Git-Tag: 0.9.9~34 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9a47938ffa17f35db35a0ce4bbb512c0f4ff24ba;p=handbrake WinGui: default to burn-in for VobSub too (when the container is MP4). This is for compatibility reason (VobSub in MP4 is supported by very few players or devices) and matches the MacGUI behavior . git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5377 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- diff --git a/win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs index cb0f0986c..90dae495f 100644 --- a/win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs @@ -382,7 +382,7 @@ namespace HandBrakeWPF.ViewModels SourceTrack = source, }; - if (source.SubtitleType == SubtitleType.PGS && + if ((source.SubtitleType == SubtitleType.PGS || source.SubtitleType == SubtitleType.VobSub) && this.Task != null && (this.Task.OutputFormat == OutputFormat.Mp4 || this.Task.OutputFormat == OutputFormat.M4V)) {