summaryrefslogtreecommitdiff
path: root/plugins/FingerprintNG/src
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2024-02-21 13:40:59 +0300
committerGeorge Hazan <george.hazan@gmail.com>2024-02-21 13:40:59 +0300
commit713042d5e93f1a19c26480e41d4d6df629f853a3 (patch)
treee6046c131aa349d17c4125d8f98f1c1873f668dc /plugins/FingerprintNG/src
parent605e2d465d21cfb1379d528a1ef07606335ca4de (diff)
Icons' options went under Customize branch
Diffstat (limited to 'plugins/FingerprintNG/src')
-rw-r--r--plugins/FingerprintNG/src/options.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/plugins/FingerprintNG/src/options.cpp b/plugins/FingerprintNG/src/options.cpp
index d9b56c26ac..6cde2061ff 100644
--- a/plugins/FingerprintNG/src/options.cpp
+++ b/plugins/FingerprintNG/src/options.cpp
@@ -120,10 +120,11 @@ public:
int OnOptInitialise(WPARAM wParam, LPARAM)
{
OPTIONSDIALOGPAGE odp = {};
- odp.szGroup.w = LPGENW("Icons");
- odp.szTitle.w = LPGENW("Fingerprint");
+ odp.flags = ODPF_BOLDGROUPS;
+ odp.szGroup.a = LPGEN("Customize");
+ odp.szTitle.a = LPGEN("Icons");
+ odp.szTab.a = LPGEN("Fingerprint");
odp.pDialog = new COptDialog;
- odp.flags = ODPF_BOLDGROUPS | ODPF_UNICODE;
g_plugin.addOptions(wParam, &odp);
return 0;
}