diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-02-01 05:46:36 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-02-01 05:46:36 +0000 |
commit | 84dedc9d7c81e97c9fc07f0ca97e34300b706e19 (patch) | |
tree | 80d5a1f424830a2b84340b54524eb7e2138cebb8 /plugins/TabSRMM/src/chat/window.cpp | |
parent | df60e52a47f80d89de55affae33d93f79e077885 (diff) |
common options for all logs moved to always visible settings
git-svn-id: http://svn.miranda-ng.org/main/trunk@3383 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TabSRMM/src/chat/window.cpp')
-rw-r--r-- | plugins/TabSRMM/src/chat/window.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/TabSRMM/src/chat/window.cpp b/plugins/TabSRMM/src/chat/window.cpp index 4f86fe2654..47a8f6b536 100644 --- a/plugins/TabSRMM/src/chat/window.cpp +++ b/plugins/TabSRMM/src/chat/window.cpp @@ -1370,7 +1370,7 @@ static LRESULT CALLBACK LogSubclassProc(HWND hwnd, UINT msg, WPARAM wParam, LPAR POINT pt={LOWORD(lParam), HIWORD(lParam)};
CheckCustomLink(hwnd, &pt, msg, wParam, lParam, TRUE);
}
- if (true || M->GetByte("autocopy", 0)) {
+ if (M->GetByte("autocopy", 0)) {
SendMessage(hwnd, EM_EXGETSEL, 0, (LPARAM) &sel);
if (sel.cpMin != sel.cpMax) {
SendMessage(hwnd, WM_COPY, 0, 0);
|