mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-12 21:34:11 +02:00
Fixed multiple extensions with ; seperation
This commit is contained in:
parent
a02de171ef
commit
e097ffc4fe
1 changed files with 5 additions and 1 deletions
|
@ -244,7 +244,11 @@ namespace IDE.ui
|
||||||
var fileTypes = scope String();
|
var fileTypes = scope String();
|
||||||
mFileTypesCombo.GetLabel(fileTypes);
|
mFileTypesCombo.GetLabel(fileTypes);
|
||||||
for (var fileType in fileTypes.Split(';'))
|
for (var fileType in fileTypes.Split(';'))
|
||||||
searchOptions.mFileTypes.Add(new String(fileType));
|
{
|
||||||
|
let fileType = new String(fileType);
|
||||||
|
fileType.Trim();
|
||||||
|
searchOptions.mFileTypes.Add(fileType);
|
||||||
|
}
|
||||||
|
|
||||||
searchOptions.mRecurseDirectories = mRecurseDirCheckbox.Checked;
|
searchOptions.mRecurseDirectories = mRecurseDirCheckbox.Checked;
|
||||||
searchOptions.mMatchCase = mMatchCaseCheckbox.Checked;
|
searchOptions.mMatchCase = mMatchCaseCheckbox.Checked;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue