diff options
author | George Hazan <ghazan@miranda.im> | 2023-03-18 15:22:49 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2023-03-18 15:22:49 +0300 |
commit | dcaa9723a42a3edd9c6bae086633b0def5bad44f (patch) | |
tree | 3050865568fefb637366d4f33a3fb3636fc9cc85 | |
parent | e8d74f6fa82f2489926c228d2e5790928174afce (diff) |
fixes #3434 (Отсутствуют всплывающие окна для хайлайтов)
-rw-r--r-- | plugins/TabSRMM/src/chat_tools.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/TabSRMM/src/chat_tools.cpp b/plugins/TabSRMM/src/chat_tools.cpp index 78a316ea6f..79a4987f1d 100644 --- a/plugins/TabSRMM/src/chat_tools.cpp +++ b/plugins/TabSRMM/src/chat_tools.cpp @@ -152,7 +152,7 @@ BOOL DoPopup(SESSION_INFO *si, GCEVENT *gce) char *szProto = dat ? dat->m_szProto : si->pszModule;
if (szProto != nullptr) {
int dwStatus = Proto_GetStatus(szProto);
- if (!(dwStatus == 0 || dwStatus <= ID_STATUS_OFFLINE))
+ if (dwStatus == 0 || dwStatus <= ID_STATUS_OFFLINE)
return 0;
}
|