Skip to content

Commit

Permalink
Merge pull request #2128 from Flikter/filter-correction
Browse files Browse the repository at this point in the history
Correct OpenFileDialog filter
  • Loading branch information
pizzaboxer committed Jun 22, 2024
2 parents 6440e31 + 5fd9d1e commit b198be4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Bloxstrap/UI/ViewModels/Menu/AppearanceViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ private void BrowseCustomIconLocation()
{
var dialog = new OpenFileDialog
{
Filter = $"{Resources.Strings.Menu_IconFiles}|*.ico|{Resources.Strings.Menu_AllFiles}|*.*"
Filter = $"{Resources.Strings.Menu_IconFiles}|*.ico"
};

if (dialog.ShowDialog() != true)
Expand Down

0 comments on commit b198be4

Please sign in to comment.