Skip to content

Commit

Permalink
fix(FileOpenPicker): System.ArgumentException Skia.WPF
Browse files Browse the repository at this point in the history
  • Loading branch information
workgroupengineering committed Dec 21, 2021
1 parent 973afb6 commit 6990f7b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ private async Task<StorageFile[]> OpenPickerAsync(bool multiple)
{
// Add default entry for all item types at once
var fullFilter = string.Join(";", _picker.FileTypeFilter.Select(fileType => $"*{fileType}"));
filterBuilder.Append($"All|{fullFilter}");
filterBuilder.Append($"|All|{fullFilter}");
}

openFileDialog.Filter = filterBuilder.ToString();
Expand Down

0 comments on commit 6990f7b

Please sign in to comment.