diff options
author | George Hazan <ghazan@miranda.im> | 2019-02-21 17:39:27 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-02-21 17:39:27 +0300 |
commit | adeb8340d9a677aaa56cca58eeb8af72dc61bab3 (patch) | |
tree | a02a2c73d4662ec9331e87fdec3b1c6b082b75b3 /plugins | |
parent | 7f4db3773e723059ddd50b63b21717cc941ca424 (diff) |
fixes #1851 (if subcontact changed, tabSRMM doesn't redraw the client's icon in the info panel)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/TabSRMM/src/globals.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/TabSRMM/src/globals.cpp b/plugins/TabSRMM/src/globals.cpp index 32e130295d..f7fd797a41 100644 --- a/plugins/TabSRMM/src/globals.cpp +++ b/plugins/TabSRMM/src/globals.cpp @@ -440,6 +440,7 @@ int CGlobals::MetaContactEvent(WPARAM hContact, LPARAM) CTabBaseDlg *pDlg = c->getDat();
if (pDlg) {
pDlg->UpdateTitle();
+ pDlg->GetClientIcon();
::PostMessage(pDlg->GetHwnd(), DM_UPDATEPICLAYOUT, 0, 0);
InvalidateRect(pDlg->GetHwnd(), nullptr, TRUE); // force redraw
}
|