summaryrefslogtreecommitdiff
path: root/plugins/Clist_blind/src/clcopts.cpp
diff options
context:
space:
mode:
authorslotwin <slotwin@users.noreply.github.com>2014-05-18 15:03:08 +0000
committerslotwin <slotwin@users.noreply.github.com>2014-05-18 15:03:08 +0000
commite9dc26230e678495a034f3a6dd268debd597907e (patch)
treee06809b669f7dd061683a60d648133ba57d78d26 /plugins/Clist_blind/src/clcopts.cpp
parenteb198e2580782a3d2c56b1b474f369343a7d00f1 (diff)
Clist_blind: options - don't highlight Apply button if nothing has changed
proper capitalization git-svn-id: http://svn.miranda-ng.org/main/trunk@9232 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_blind/src/clcopts.cpp')
-rw-r--r--plugins/Clist_blind/src/clcopts.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/Clist_blind/src/clcopts.cpp b/plugins/Clist_blind/src/clcopts.cpp
index b478de119e..97f6f4ee6b 100644
--- a/plugins/Clist_blind/src/clcopts.cpp
+++ b/plugins/Clist_blind/src/clcopts.cpp
@@ -182,6 +182,9 @@ static INT_PTR CALLBACK DlgProcClcMainOpts(HWND hwndDlg, UINT msg, WPARAM wParam
if ((LOWORD(wParam) == IDC_LEFTMARGIN || LOWORD(wParam) == IDC_SMOOTHTIME || LOWORD(wParam) == IDC_GROUPINDENT)
&& (HIWORD(wParam) != EN_CHANGE || (HWND) lParam != GetFocus()))
return 0;
+ if ((LOWORD(wParam) == IDC_T_CONTACT || LOWORD(wParam) == IDC_T_GROUP || LOWORD(wParam) == IDC_T_DIVIDER || LOWORD(wParam) == IDC_T_INFO)
+ && (HIWORD(wParam) != EN_CHANGE || (HWND) lParam != GetFocus()))
+ return 0;
SendMessage(GetParent(hwndDlg), PSM_CHANGED, 0, 0);
break;
case WM_NOTIFY: