diff options
author | George Hazan <george.hazan@gmail.com> | 2013-12-16 18:44:46 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-12-16 18:44:46 +0000 |
commit | bea126b76cb66959ad687d71e364eec074da2d24 (patch) | |
tree | 8aad392933d654d188663bd4ba2fb032c4a169fb /plugins/Clist_nicer | |
parent | 15eb669633561bb2a31c1bdef6f03c91c6c23bc9 (diff) |
frames code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@7253 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_nicer')
-rw-r--r-- | plugins/Clist_nicer/src/CLUIFrames/cluiframes.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/Clist_nicer/src/CLUIFrames/cluiframes.cpp b/plugins/Clist_nicer/src/CLUIFrames/cluiframes.cpp index d4fe172364..a888833508 100644 --- a/plugins/Clist_nicer/src/CLUIFrames/cluiframes.cpp +++ b/plugins/Clist_nicer/src/CLUIFrames/cluiframes.cpp @@ -2760,7 +2760,8 @@ LRESULT CALLBACK CLUIFrameTitleBarProc(HWND hwnd, UINT msg, WPARAM wParam, LPARA ulockfrm();
return 0;
}
- } else {
+ }
+ else {
int id = Frames[pos].id;
GetCursorPos(&curpt);
@@ -2810,7 +2811,7 @@ LRESULT CALLBACK CLUIFrameTitleBarProc(HWND hwnd, UINT msg, WPARAM wParam, LPARA }
ulockfrm();
}
- if (wParam & MK_RBUTTON) {
+ if (wParam & MK_LBUTTON) {
int newh = -1, prevold;
if (GetCapture() != hwnd)
|