Skip to content

Commit

Permalink
fix import (fix #1466)
Browse files Browse the repository at this point in the history
  • Loading branch information
henrypp committed Jul 29, 2023
1 parent 41fde16 commit ead8451
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.c
Expand Up @@ -3031,7 +3031,7 @@ INT_PTR CALLBACK DlgProc (
case IDM_IMPORT:
{
static COMDLG_FILTERSPEC filters[] = {
L"Profile files (*.sp, *xml)", L"*.sp, *xml",
L"Profile files (*.xml)", L"*.xml",
L"All files (*.*)", L"*.*",
};

Expand Down Expand Up @@ -3069,7 +3069,7 @@ INT_PTR CALLBACK DlgProc (
case IDM_EXPORT:
{
static COMDLG_FILTERSPEC filters[] = {
L"Profile files (*.sp, *xml)", L"*.sp, *xml",
L"Profile files (*.xml)", L"*.xml",
L"All files (*.*)", L"*.*",
};

Expand Down

0 comments on commit ead8451

Please sign in to comment.