diff options
author | sr55 <[email protected]> | 2012-06-20 17:48:38 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2012-06-20 17:48:38 +0000 |
commit | 0526951c3fb10bbdd62150165fc1daf2f72e25cc (patch) | |
tree | 54233692b8fe6f7d315b1dd90bd999e2fb79ff94 /win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs | |
parent | 28ff9e210e2604c47c5f157043aa85d4d56b6a16 (diff) |
WinGui: - Another fix to the Subtitles panel.
- Try Default the Destination Browse window to the currently set path.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4760 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs index 657318f34..aaf6fa43e 100644 --- a/win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs @@ -307,16 +307,18 @@ namespace HandBrakeWPF.ViewModels this.SourceTracks.FirstOrDefault(s => s.SubtitleType != SubtitleType.ForeignAudioSearch))
: null);
- if (source != null)
+ if (source == null)
{
- SubtitleTrack track = new SubtitleTrack
+ source = ForeignAudioSearchTrack;
+ }
+
+ SubtitleTrack track = new SubtitleTrack
{
SubtitleType = SubtitleType.VobSub,
SourceTrack = source,
};
- this.Task.SubtitleTracks.Add(track);
- }
+ this.Task.SubtitleTracks.Add(track);
}
/// <summary>
|