diff options
author | sr55 <[email protected]> | 2019-01-14 22:17:45 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2019-01-14 22:18:05 +0000 |
commit | 740348fefc3872d74b1a49752e48e36c20656303 (patch) | |
tree | cd26954a9c7eae2d5cf76d9291feba4056e7d81e /win/CS/HandBrakeWPF/ViewModels | |
parent | 8f99ad6571508d67b237ef106dc60c6cbec88f6d (diff) |
WinGui: Initial support for SSA file import.
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs index a847bc060..e164f1192 100644 --- a/win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs @@ -238,11 +238,11 @@ namespace HandBrakeWPF.ViewModels public void Import()
{
OpenFileDialog dialog = new OpenFileDialog
- {
- Filter = "SRT files (*.srt)|*.srt",
- CheckFileExists = true,
- Multiselect = true
- };
+ {
+ Filter = "Subtitle files (*.srt, *.ssa)|*.srt;*.ssa",
+ CheckFileExists = true,
+ Multiselect = true
+ };
if (this.Task != null && this.Task.Source != null)
{
|