diff options
author | sr55 <[email protected]> | 2017-12-29 19:51:35 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2017-12-29 19:51:49 +0000 |
commit | f3a811ae043ed5641d17c0fcf1ec79560746cc90 (patch) | |
tree | 3cf606c7f268425722ff2e9734975a77e5d26dd8 /win/CS/HandBrakeWPF/ViewModels | |
parent | 379f323c5b9f06eba0535dac721043dcb5ea1d96 (diff) |
WinGui: Add combined option in the Chapter Import Open File Dialog. #1015
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/ChaptersViewModel.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/ChaptersViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/ChaptersViewModel.cs index 92420fbe9..023325c9b 100644 --- a/win/CS/HandBrakeWPF/ViewModels/ChaptersViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/ChaptersViewModel.cs @@ -179,7 +179,7 @@ namespace HandBrakeWPF.ViewModels string fileExtension = null;
using (var dialog = new OpenFileDialog()
{
- Filter = string.Join("|", ChapterImporterCsv.FileFilter, ChapterImporterXml.FileFilter, ChapterImporterTxt.FileFilter),
+ Filter = string.Join("|", "All Supported Formats (*.csv;*.tsv,*.xml,*.txt)|*.csv;*.tsv;*.xml;*.txt", ChapterImporterCsv.FileFilter, ChapterImporterXml.FileFilter, ChapterImporterTxt.FileFilter),
FilterIndex = 1, // 1 based, the index value of the first filter entry is 1
CheckFileExists = true
})
|