diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2012-06-21 19:29:24 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2012-06-21 19:29:24 +0000 |
commit | 949822e59a4396e8203e55ff866a1577619ef713 (patch) | |
tree | 1c2aa62c3f7853fe857de6c5777e296d0913d86d /plugins/TabSRMM/src/containeroptions.cpp | |
parent | b28058f5859211b00ba9ca287b751ed21ccebac5 (diff) |
Fixed: Changing transparency slider in container options didn't enable the Apply button
git-svn-id: http://svn.miranda-ng.org/main/trunk@517 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TabSRMM/src/containeroptions.cpp')
-rw-r--r-- | plugins/TabSRMM/src/containeroptions.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/TabSRMM/src/containeroptions.cpp b/plugins/TabSRMM/src/containeroptions.cpp index 29bb69afa2..f3b8aee90d 100644 --- a/plugins/TabSRMM/src/containeroptions.cpp +++ b/plugins/TabSRMM/src/containeroptions.cpp @@ -270,6 +270,12 @@ INT_PTR CALLBACK DlgProcContainerOptions(HWND hwndDlg, UINT msg, WPARAM wParam, ShowPage(hwndDlg, pmtv->itemNew.lParam, 1);
}
break;
+ case WM_HSCROLL:
+ if((HWND)lParam == GetDlgItem(hwndDlg, IDC_TRANSPARENCY_ACTIVE) || (HWND)lParam == GetDlgItem(hwndDlg, IDC_TRANSPARENCY_ACTIVE))
+ {
+ Utils::enableDlgControl(hwndDlg, IDC_APPLY, TRUE);
+ }
+ break;
case WM_COMMAND:
switch (LOWORD(wParam)) {
case IDC_CNTPRIVATE: {
|