Skip to content

Commit

Permalink
supporting only 64bit extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
diaskhanimanberdiyev committed Oct 1, 2024
1 parent 53955a7 commit 6facfdd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/SmartCommander/ViewModels/OptionsViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@ private void RemoveFile(Window window)
}
}

public static FilePickerFileType ListerPluginsFilter { get; } = new("Lister Plugins")
public static FilePickerFileType ListerPluginsFilter { get; } = new("Lister Plugins (64bit)")
{
Patterns = new[] { "*.wlx", "*.wlx64" }
Patterns = new[] { /*"*.wlx",*/ "*.wlx64" }
};
private void AddFileAsync(Window window)
{
Expand Down

0 comments on commit 6facfdd

Please sign in to comment.