diff options
author | George Hazan <george.hazan@gmail.com> | 2024-02-21 13:40:59 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-02-21 13:40:59 +0300 |
commit | 713042d5e93f1a19c26480e41d4d6df629f853a3 (patch) | |
tree | e6046c131aa349d17c4125d8f98f1c1873f668dc /plugins/CountryFlags | |
parent | 605e2d465d21cfb1379d528a1ef07606335ca4de (diff) |
Icons' options went under Customize branch
Diffstat (limited to 'plugins/CountryFlags')
-rw-r--r-- | plugins/CountryFlags/src/options.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/CountryFlags/src/options.cpp b/plugins/CountryFlags/src/options.cpp index 29a2f9c4de..f6f0dc9978 100644 --- a/plugins/CountryFlags/src/options.cpp +++ b/plugins/CountryFlags/src/options.cpp @@ -83,13 +83,13 @@ static INT_PTR CALLBACK ExtraImgOptDlgProc(HWND hwndDlg, UINT msg, WPARAM, LPARA int OnOptionsInit(WPARAM wParam, LPARAM)
{
OPTIONSDIALOGPAGE odp = {};
- odp.pszTemplate = MAKEINTRESOURCEA(IDD_OPT_EXTRAIMG);
- odp.position = 900000002;
- odp.szGroup.a = LPGEN("Icons"); /* autotranslated */
- odp.szTitle.a = LPGEN("Country Flags"); /* autotranslated */
- odp.szTab.a = LPGEN("Country Flags"); /* autotranslated, can be made a tab */
odp.flags = ODPF_BOLDGROUPS;
+ odp.position = 900000002;
+ odp.szGroup.a = LPGEN("Customize");
+ odp.szTitle.a = LPGEN("Icons");
+ odp.szTab.a = LPGEN("Country Flags");
odp.pfnDlgProc = ExtraImgOptDlgProc;
+ odp.pszTemplate = MAKEINTRESOURCEA(IDD_OPT_EXTRAIMG);
g_plugin.addOptions(wParam, &odp);
return 0;
}
|