diff options
author | George Hazan <george.hazan@gmail.com> | 2014-06-30 18:00:45 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-06-30 18:00:45 +0000 |
commit | e9bdd3de165d567608d996a274698c116ec7f6a7 (patch) | |
tree | 5d1b88593c081f6021c576f216dc666854c14ce0 /plugins | |
parent | 9198ad465cc104525b9acb25bfdd66949adc07a4 (diff) |
track avatar's change when sub changes
git-svn-id: http://svn.miranda-ng.org/main/trunk@9629 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/TabSRMM/src/globals.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/TabSRMM/src/globals.cpp b/plugins/TabSRMM/src/globals.cpp index 5fdf1e1724..1f709f1e46 100644 --- a/plugins/TabSRMM/src/globals.cpp +++ b/plugins/TabSRMM/src/globals.cpp @@ -507,8 +507,9 @@ int CGlobals::MetaContactEvent(WPARAM hContact, LPARAM lParam) if (c) {
c->updateMeta(true);
if (c->getHwnd()) {
- c->updateUIN(); // only do this for open windows, not needed normally
+ c->updateUIN(); // only do this for open windows, not needed normally
::PostMessage(c->getHwnd(), DM_UPDATETITLE, 0, 0);
+ ::PostMessage(c->getHwnd(), DM_UPDATEPICLAYOUT, 0, 0);
}
}
}
|