diff options
author | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2009-09-06 23:29:03 +0000 |
---|---|---|
committer | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2009-09-06 23:29:03 +0000 |
commit | 123dcff490b3acaf2ce1bab93c08ccdaea43775a (patch) | |
tree | c90bcf7bb37b88088d284acf27c0662648bab737 /yapp/message_pump.cpp | |
parent | ffd5a2a14c665a6f42378ab961108dd4d80468ef (diff) |
Fixed crash on popup dismiss
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@470 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'yapp/message_pump.cpp')
-rw-r--r-- | yapp/message_pump.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/yapp/message_pump.cpp b/yapp/message_pump.cpp index 426d0ab..a03dae3 100644 --- a/yapp/message_pump.cpp +++ b/yapp/message_pump.cpp @@ -125,6 +125,9 @@ DWORD CALLBACK MessagePumpThread(LPVOID param) { BroadcastMessage(PUM_KILLNOTIFY, (WPARAM)hNotify, 0);
}
break;
+ case MUM_NMAVATAR:
+ RepositionWindows();
+ break;
default:
{
TranslateMessage(&hwndMsg);
|