diff options
Diffstat (limited to 'plugins/TabSRMM/src/mim.cpp')
-rw-r--r-- | plugins/TabSRMM/src/mim.cpp | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/plugins/TabSRMM/src/mim.cpp b/plugins/TabSRMM/src/mim.cpp index 268bf999c1..7039c21bbe 100644 --- a/plugins/TabSRMM/src/mim.cpp +++ b/plugins/TabSRMM/src/mim.cpp @@ -450,20 +450,15 @@ int CMimAPI::MessageEventAdded(WPARAM hContact, LPARAM hDbEvent) switch (dbei.eventType) { case EVENTTYPE_AUTHREQUEST: case EVENTTYPE_ADDED: - return 0; - case EVENTTYPE_FILE: - tabSRMM_ShowPopup(hContact, hDbEvent, dbei.eventType, 0, nullptr, nullptr, dbei.szModule); return 0; } } - // if no window is open, we are not interested in anything else but unread message events - // new message - if (!nen_options.iNoSounds) + if (!NEN::bNoSounds) Skin_PlaySound("AlertMsg"); - if (nen_options.iNoAutoPopup) + if (NEN::bNoAutoPopup) goto nowindowcreate; PostMessage(PluginConfig.g_hwndHotkeyHandler, DM_CREATECONTAINER, hContact, hDbEvent); @@ -486,8 +481,6 @@ nowindowcreate: cle.pszService = MS_MSG_READMESSAGE; cle.szTooltip.w = toolTip; g_clistApi.pfnAddEvent(&cle); - - tabSRMM_ShowPopup(hContact, hDbEvent, dbei.eventType, 0, nullptr, nullptr, dbei.szModule); } return 0; } |