diff options
author | sr55 <[email protected]> | 2019-05-12 17:22:51 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2019-05-12 17:22:51 +0100 |
commit | 176e1efa4ec0f49bd156a41caa15c7b16d41fd6b (patch) | |
tree | 943afb144fdf429abab5dca57a00ae41f0493ab3 /win/CS/HandBrakeWPF/ViewModels | |
parent | 4c9510890a83f0502bfb3ac02687a1072dc16fef (diff) |
WinGui: Add missing .ass extension to subtitle import
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs index 035da87ed..6ddc1cf89 100644 --- a/win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs @@ -254,7 +254,7 @@ namespace HandBrakeWPF.ViewModels {
OpenFileDialog dialog = new OpenFileDialog
{
- Filter = "Subtitle files (*.srt, *.ssa)|*.srt;*.ssa",
+ Filter = "Subtitle files (*.srt, *.ssa, *.ass)|*.srt;*.ssa;*.ass",
CheckFileExists = true,
Multiselect = true
};
|