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 /plugins/Scriver/src | |
parent | 741981732e0db3e4335c246fb511e02cce8946c6 (diff) |
improved chat filter behavior consistency
Diffstat (limited to 'plugins/Scriver/src')
-rw-r--r-- | plugins/Scriver/src/msglog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Scriver/src/msglog.cpp b/plugins/Scriver/src/msglog.cpp index 6b4b2266b7..ea8dbd2747 100644 --- a/plugins/Scriver/src/msglog.cpp +++ b/plugins/Scriver/src/msglog.cpp @@ -834,7 +834,7 @@ public: if (m_rtf.GetHwnd() == nullptr || lin == nullptr || si == nullptr)
return;
- if (!bRedraw && (si->iType == GCW_CHATROOM || si->iType == GCW_PRIVMESS) && m_pDlg.m_bFilterEnabled && !(m_pDlg.m_iLogFilterFlags & lin->iType))
+ if (!bRedraw && (si->iType == GCW_CHATROOM || si->iType == GCW_PRIVMESS) && !(m_pDlg.m_iLogFilterFlags & lin->iType))
return;
LOGSTREAMDATA streamData;
|