diff options
author | George Hazan <ghazan@miranda.im> | 2023-03-30 19:52:33 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2023-03-30 19:52:33 +0300 |
commit | 357540d5d8f0e67a2b3efdef7bc40c8db91fccf8 (patch) | |
tree | e8bdc6f9a4c3267750947ec83045d8d09084f808 /src/core | |
parent | 741981732e0db3e4335c246fb511e02cce8946c6 (diff) |
improved chat filter behavior consistency
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/stdmsg/src/chat_window.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/stdmsg/src/chat_window.cpp b/src/core/stdmsg/src/chat_window.cpp index 62572d5de1..4cc1fa7a3f 100644 --- a/src/core/stdmsg/src/chat_window.cpp +++ b/src/core/stdmsg/src/chat_window.cpp @@ -113,7 +113,7 @@ void CLogWindow::LogEvents(LOGINFO *lin, bool bRedraw) if (lin == nullptr || si == nullptr)
return;
- if (!bRedraw && si->iType == GCW_CHATROOM && m_pDlg.m_bFilterEnabled && (m_pDlg.m_iLogFilterFlags & lin->iType) == 0)
+ if (!bRedraw && si->iType == GCW_CHATROOM && (m_pDlg.m_iLogFilterFlags & lin->iType) == 0)
return;
LOGSTREAMDATA streamData;
|