File tree Expand file tree Collapse file tree 3 files changed +1
-3
lines changed
Expand file tree Collapse file tree 3 files changed +1
-3
lines changed Original file line number Diff line number Diff line change 33using FluentAvalonia . UI . Controls ;
44using HanumanInstitute . MvvmDialogs ;
55using HanumanInstitute . MvvmDialogs . Avalonia . Fluent ;
6- using HanumanInstitute . MvvmDialogs . FrameworkDialogs ;
76using ReactiveUI ;
87
98namespace Demo . Avalonia . FluentContentDialog ;
Original file line number Diff line number Diff line change 44using FluentAvalonia . UI . Controls ;
55using HanumanInstitute . MvvmDialogs ;
66using HanumanInstitute . MvvmDialogs . Avalonia . Fluent ;
7- using HanumanInstitute . MvvmDialogs . FrameworkDialogs ;
87using ReactiveUI ;
98
109namespace Demo . Avalonia . FluentTaskDialog ;
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ private static List<FilePickerFileType> SyncFilters(List<FileFilter> filters) =>
105105 filters . Select (
106106 x => new FilePickerFileType ( x . NameToString ( x . ExtensionsToString ( ) ) )
107107 {
108- Patterns = x . Extensions ? . Select ( y => y . TrimStart ( '.' ) ) . ToList ( ) ,
108+ Patterns = x . Extensions ? . Select ( y => "*." + y . TrimStart ( '.' ) ) . ToList ( ) ,
109109 MimeTypes = x . MimeTypes ,
110110 AppleUniformTypeIdentifiers = x . AppleUniformTypeIdentifiers
111111 } ) . ToList ( ) ;
You can’t perform that action at this time.
0 commit comments