diff options
author | George Hazan <ghazan@miranda.im> | 2018-04-16 12:04:48 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-04-16 12:04:48 +0300 |
commit | 981eb26ecb81af9b0fa2cd887461884bcc3fbb0e (patch) | |
tree | 5724cc6fea9f01715bfc6612f72db78cb7436a7e /src/mir_app | |
parent | 312527636ef61001c77fc452fa5a0d31a8c6ee69 (diff) |
fixes #1271 (Warning if FloatingContacts is installed and "Disable drag and drop of items" in clist settings is enabled)
Diffstat (limited to 'src/mir_app')
-rw-r--r-- | src/mir_app/src/clcmsgs.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mir_app/src/clcmsgs.cpp b/src/mir_app/src/clcmsgs.cpp index a05f84dc9e..c8b9f0a493 100644 --- a/src/mir_app/src/clcmsgs.cpp +++ b/src/mir_app/src/clcmsgs.cpp @@ -188,6 +188,13 @@ LRESULT fnProcessExternalMessages(HWND hwnd, ClcData *dat, UINT msg, WPARAM wPar case CLM_GETLEFTMARGIN:
return dat->leftMargin;
+ case CLM_GETEXSTYLE:
+ return dat->exStyle;
+
+ case CLM_SETEXSTYLE:
+ dat->exStyle |= wParam;
+ break;
+
case CLM_GETNEXTITEM:
if (wParam == CLGN_ROOT) {
if (dat->list.cl.getCount())
|