diff options
author | George Hazan <ghazan@miranda.im> | 2018-04-25 13:43:58 +0200 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-04-25 13:43:58 +0200 |
commit | b09a0d3b71115838de61b189f06545f7a12671d3 (patch) | |
tree | 9e91566e0339a61a83970158ecafa990f1efac6d /src | |
parent | 5b87c5f200b8b897a1a8c849eb9b9c1e7bb8c5f3 (diff) |
fixes #1294 (Contacts from disabled accounts are displayed in certain conditions)
Diffstat (limited to 'src')
-rw-r--r-- | src/mir_app/src/clistmod.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mir_app/src/clistmod.cpp b/src/mir_app/src/clistmod.cpp index cdcc9fe9ad..a7f6fbf932 100644 --- a/src/mir_app/src/clistmod.cpp +++ b/src/mir_app/src/clistmod.cpp @@ -179,7 +179,9 @@ static int ContactListAccountsChanged(WPARAM eventCode, LPARAM lParam) Menu_ReloadProtoMenus();
Clist_TrayIconIconsChanged();
- Clist_Broadcast(INTM_RELOADOPTIONS, 0, 0);
+
+ cli.bAutoRebuild = true;
+ Clist_Broadcast(CLM_AUTOREBUILD, 0, 0);
Clist_Broadcast(INTM_INVALIDATE, 0, 0);
return 0;
}
|