Correct OpenFileDialog filter

This commit is contained in:
Flikter 2024-06-20 20:46:00 +02:00 committed by GitHub
parent 69a059e27b
commit 5fd9d1e207
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -35,7 +35,7 @@ namespace Bloxstrap.UI.ViewModels.Menu
{ {
var dialog = new OpenFileDialog var dialog = new OpenFileDialog
{ {
Filter = $"{Resources.Strings.Menu_IconFiles}|*.ico|{Resources.Strings.Menu_AllFiles}|*.*" Filter = $"{Resources.Strings.Menu_IconFiles}|*.ico"
}; };
if (dialog.ShowDialog() != true) if (dialog.ShowDialog() != true)