From 4a18c4e02bbe291db8fc7c58ed565fa8afe6725f Mon Sep 17 00:00:00 2001 From: George Hazan Date: Tue, 3 Mar 2020 21:46:35 +0300 Subject: HM_DBEVENTADDED to be delayed, instead of sending it immediately --- src/core/stdmsg/src/globals.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core/stdmsg') diff --git a/src/core/stdmsg/src/globals.cpp b/src/core/stdmsg/src/globals.cpp index 26f0a72e10..8a5db71ed9 100644 --- a/src/core/stdmsg/src/globals.cpp +++ b/src/core/stdmsg/src/globals.cpp @@ -65,12 +65,12 @@ static int dbaddedevent(WPARAM hContact, LPARAM hDbEvent) if (hContact) { HWND h = Srmm_FindWindow(hContact); if (h) - SendMessage(h, HM_DBEVENTADDED, hContact, hDbEvent); + ::PostMessage(h, HM_DBEVENTADDED, hContact, hDbEvent); MCONTACT hEventContact = db_event_getContact(hDbEvent); if (hEventContact != hContact) if ((h = Srmm_FindWindow(hEventContact)) != nullptr) - SendMessage(h, HM_DBEVENTADDED, hEventContact, hDbEvent); + ::PostMessage(h, HM_DBEVENTADDED, hEventContact, hDbEvent); } return 0; } -- cgit v1.2.3