diff options
author | slotwin <slotwin@users.noreply.github.com> | 2014-05-18 15:03:08 +0000 |
---|---|---|
committer | slotwin <slotwin@users.noreply.github.com> | 2014-05-18 15:03:08 +0000 |
commit | e9dc26230e678495a034f3a6dd268debd597907e (patch) | |
tree | e06809b669f7dd061683a60d648133ba57d78d26 /plugins/Clist_blind/src/clcopts.cpp | |
parent | eb198e2580782a3d2c56b1b474f369343a7d00f1 (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.cpp | 3 |
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:
|