diff options
author | George Hazan <ghazan@miranda.im> | 2020-07-07 15:01:41 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-07-07 15:01:41 +0300 |
commit | 9a8de7bc1afb5f72ddb6967c8fc32209ae3a73dd (patch) | |
tree | 8a4ae662da5b13b3c836dbf7bbeff19353da6b35 /plugins/TabSRMM | |
parent | 70e37537a40297d5cbb566e7f1bd6af85b22f640 (diff) |
tabSRMM: events (file transfers) that go to group chats shall not clear log window
Diffstat (limited to 'plugins/TabSRMM')
-rw-r--r-- | plugins/TabSRMM/src/generic_msghandlers.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/TabSRMM/src/generic_msghandlers.cpp b/plugins/TabSRMM/src/generic_msghandlers.cpp index 3466ec327b..009b6f3f64 100644 --- a/plugins/TabSRMM/src/generic_msghandlers.cpp +++ b/plugins/TabSRMM/src/generic_msghandlers.cpp @@ -1083,7 +1083,7 @@ void CMsgDialog::DM_EventAdded(WPARAM hContact, LPARAM lParam) } m_cache->updateStats(TSessionStats::UPDATE_WITH_LAST_RCV, 0); - if (hDbEvent != m_hDbEventFirst) { + if (hDbEvent != m_hDbEventFirst || isChat()) { if (!m_bScrollingDisabled) StreamEvents(hDbEvent, 1, 1); else { |