summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Services/Encode
diff options
context:
space:
mode:
authorsr55 <[email protected]>2017-12-25 16:06:19 +0000
committersr55 <[email protected]>2017-12-25 16:06:27 +0000
commit0ee7c489ca5c0408877d304b65cb1d92160af807 (patch)
tree17c456ad203749060c2f1db812f384026ea37bc4 /win/CS/HandBrakeWPF/Services/Encode
parent903ceebfcd0eb6cd8b4c6651b3ec93520c25d18e (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.cs4
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);