summaryrefslogtreecommitdiffstats
path: root/win/CS
diff options
context:
space:
mode:
authorRodeo <[email protected]>2013-04-02 22:33:56 +0000
committerRodeo <[email protected]>2013-04-02 22:33:56 +0000
commit9a47938ffa17f35db35a0ce4bbb512c0f4ff24ba (patch)
treee788916e7b3b3f45b4839360e5c2217ec248bf69 /win/CS
parent9a802e758dd49a3bcd65ac776d63be87be56e8c7 (diff)
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
Diffstat (limited to 'win/CS')
-rw-r--r--win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs2
1 files changed, 1 insertions, 1 deletions
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))
{