diff options
Diffstat (limited to 'plugins/UserInfoEx/src/init.cpp')
-rw-r--r-- | plugins/UserInfoEx/src/init.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/plugins/UserInfoEx/src/init.cpp b/plugins/UserInfoEx/src/init.cpp index 394e2da982..b2bb2f2708 100644 --- a/plugins/UserInfoEx/src/init.cpp +++ b/plugins/UserInfoEx/src/init.cpp @@ -85,9 +85,6 @@ static int OnModulesLoaded(WPARAM wParam, LPARAM lParam) SvcHomepageLoadModule();
SvcFlagsOnModulesLoaded();
- if (SvcEMailEnableExtraIcons() || SvcPhoneEnableExtraIcons() || SvcGenderEnableExtraIcons() || SvcHomepageEnableExtraIcons())
- pcli->pfnSetAllExtraIcons(0);
-
// build contact's menuitems
RebuildMenu();
HookEvent( ME_CLIST_PREBUILDSTATUSMENU, (MIRANDAHOOK)RebuildAccount);
@@ -204,6 +201,10 @@ extern "C" int __declspec(dllexport) Load(void) SvcEMailLoadModule();
SvcRefreshContactInfoLoadModule();
+ SvcPhoneEnableExtraIcons();
+ SvcGenderEnableExtraIcons();
+ SvcHomepageEnableExtraIcons();
+
CtrlContactLoadModule();
// load my button class
CtrlButtonLoadModule();
|