diff options
author | George Hazan <ghazan@miranda.im> | 2019-10-03 20:12:17 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-10-03 20:12:17 +0300 |
commit | 1c79bb4a2bc81b9a726ebcbb9993a0fada886f47 (patch) | |
tree | 9a727482e8b11e2457ab5e4cfdac2e2b9d82638e /plugins/TabSRMM/src/generic_msghandlers.cpp | |
parent | 7a81e01aeec30c64bd4b5487fe876b5ed019b532 (diff) |
fixes #2089 (tabSRMM doesn't scroll to bottom if custom log is chosen)
Diffstat (limited to 'plugins/TabSRMM/src/generic_msghandlers.cpp')
-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 d7087b5911..196a37e7a8 100644 --- a/plugins/TabSRMM/src/generic_msghandlers.cpp +++ b/plugins/TabSRMM/src/generic_msghandlers.cpp @@ -1136,7 +1136,7 @@ void CMsgDialog::DM_EventAdded(WPARAM hContact, LPARAM lParam) if (hDbEvent != m_hDbEventFirst) { if (!(m_dwFlagsEx & MWF_SHOW_SCROLLINGDISABLED)) - m_pLog->LogEvents(hDbEvent, 1, 1); + StreamEvents(hDbEvent, 1, 1); else { if (m_iNextQueuedEvent >= m_iEventQueueSize) { m_hQueuedEvents = (MEVENT*)mir_realloc(m_hQueuedEvents, (m_iEventQueueSize + 10) * sizeof(MEVENT)); |