Skip to content

Feature: Added option to browse all icon files in file picker #17158

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/Files.App/Strings/en-US/Resources.resw
Original file line number Diff line number Diff line change
Expand Up @@ -4236,4 +4236,8 @@
<value>Status center progress ping</value>
<comment>Screen reader name for the status center progress ring</comment>
</data>
<data name="IconFiles" xml:space="preserve">
<value>Icon files</value>
<comment>This is the friendly name for a variety of different icon files.</comment>
</data>
</root>
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ private void ExecuteOpenFilePickerCommand()

string[] extensions =
[
Strings.IconFiles.GetLocalizedResource(), "*.dll;*.exe;*.ico;*.icl",
Strings.ApplicationExtension.GetLocalizedResource(), "*.dll",
Strings.Application.GetLocalizedResource(), "*.exe",
Strings.IcoFileCapitalized.GetLocalizedResource(), "*.ico",
Expand Down
Loading