diff options
author | George Hazan <ghazan@miranda.im> | 2021-12-11 16:51:29 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2021-12-11 16:51:29 +0300 |
commit | 78ffd40384ed8a7df3f5bccb3480e7c424bbb90c (patch) | |
tree | 6e9f89121634d7244e58b71bbd970a4dbcb1c100 /plugins/TabSRMM/src/msgdialog.cpp | |
parent | 0d1988620932dc892064e1423db82358ae0bf744 (diff) |
Fixes #2982:
- status change events are now considered tabSRMM specific and are generated only for tabSRMM embedded log viewer
- code cleaning
Diffstat (limited to 'plugins/TabSRMM/src/msgdialog.cpp')
-rw-r--r-- | plugins/TabSRMM/src/msgdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/TabSRMM/src/msgdialog.cpp b/plugins/TabSRMM/src/msgdialog.cpp index a2100c9fcb..5e73f4b7fa 100644 --- a/plugins/TabSRMM/src/msgdialog.cpp +++ b/plugins/TabSRMM/src/msgdialog.cpp @@ -927,7 +927,7 @@ void CMsgDialog::onClick_Quote(CCtrlButton*) return;
bool bUseSelection = false;
- if (m_iLogMode == 0) {
+ if (m_iLogMode == WANT_BUILTIN_LOG) {
CHARRANGE sel;
LOG()->WndProc(EM_EXGETSEL, 0, (LPARAM)&sel);
if (sel.cpMin != sel.cpMax) {
|