diff options
author | sr55 <[email protected]> | 2017-12-25 16:06:19 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2017-12-25 16:06:27 +0000 |
commit | 0ee7c489ca5c0408877d304b65cb1d92160af807 (patch) | |
tree | 17c456ad203749060c2f1db812f384026ea37bc4 /win/CS/HandBrakeWPF/Services/Encode | |
parent | 903ceebfcd0eb6cd8b4c6651b3ec93520c25d18e (diff) |
WinGui: Disable Subtitle Burn In Checkbox for PGS + MP4 #1077
Diffstat (limited to 'win/CS/HandBrakeWPF/Services/Encode')
-rw-r--r-- | win/CS/HandBrakeWPF/Services/Encode/Model/Models/SubtitleTrack.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/Services/Encode/Model/Models/SubtitleTrack.cs b/win/CS/HandBrakeWPF/Services/Encode/Model/Models/SubtitleTrack.cs index d29709310..e481907bb 100644 --- a/win/CS/HandBrakeWPF/Services/Encode/Model/Models/SubtitleTrack.cs +++ b/win/CS/HandBrakeWPF/Services/Encode/Model/Models/SubtitleTrack.cs @@ -171,8 +171,10 @@ namespace HandBrakeWPF.Services.Encode.Model.Models if (this.sourceTrack != null) { this.Track = this.sourceTrack.ToString(); + this.SubtitleType = this.sourceTrack.SubtitleType; } - + + this.NotifyOfPropertyChange(() => this.SubtitleType); this.NotifyOfPropertyChange(() => this.CanBeBurned); this.NotifyOfPropertyChange(() => this.CanBeForced); |