diff options
author | George Hazan <ghazan@miranda.im> | 2018-02-15 14:39:23 +0200 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-02-15 14:39:23 +0200 |
commit | 7191b3df2e9f473133c99f56c46c72c99c122c8a (patch) | |
tree | 0e6f1559db7090972117ff77ec0307983a27179d /plugins/TabSRMM | |
parent | 4698d9baf75de69d3f1c2e7f62e83f6e14e0878b (diff) |
fixes #1152 (TabSRMM: container settings use non-standard back color)
Diffstat (limited to 'plugins/TabSRMM')
-rw-r--r-- | plugins/TabSRMM/src/containeroptions.cpp | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/plugins/TabSRMM/src/containeroptions.cpp b/plugins/TabSRMM/src/containeroptions.cpp index f4c5ecc438..c87c52700f 100644 --- a/plugins/TabSRMM/src/containeroptions.cpp +++ b/plugins/TabSRMM/src/containeroptions.cpp @@ -217,23 +217,6 @@ INT_PTR CALLBACK DlgProcContainerOptions(HWND hwndDlg, UINT msg, WPARAM wParam, }
return FALSE;
- case WM_CTLCOLOREDIT:
- case WM_CTLCOLORSTATIC:
- {
- HWND hwndChild = (HWND)lParam;
- UINT id = GetDlgCtrlID(hwndChild);
-
- if (hwndChild == GetDlgItem(hwndDlg, IDC_TITLEBOX))
- ::SetTextColor((HDC)wParam, RGB(60, 60, 150));
- else if (hwndChild == GetDlgItem(hwndDlg, IDC_DESC))
- ::SetTextColor((HDC)wParam, RGB(160, 50, 50));
-
- if (id == IDC_TSLABEL_REOPENWARN)
- break;
- SetBkColor((HDC)wParam, GetSysColor(COLOR_WINDOW));
- return (INT_PTR)GetSysColorBrush(COLOR_WINDOW);
- }
-
case WM_NOTIFY:
if (wParam == IDC_SECTIONTREE && ((LPNMHDR)lParam)->code == TVN_SELCHANGED) {
NMTREEVIEW *pmtv = (NMTREEVIEW *)lParam;
|