From 2a337df8e58b8dd82ed50ebbbb99cc4623a9b6ed Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Wed, 5 Nov 2014 16:36:44 -0500 Subject: [PATCH] Fixed up appearance of read-only TextFields on Windows. --- common_windows.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/common_windows.c b/common_windows.c index e0142c8..d1447f6 100644 --- a/common_windows.c +++ b/common_windows.c @@ -118,7 +118,11 @@ BOOL sharedWndProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam, LRESULT * return TRUE; case WM_CTLCOLORSTATIC: case WM_CTLCOLORBTN: - // TODO exempt read-only textboxes + // read-only TextFields and Textboxes are exempt + // this is because read-only edit controls count under WM_CTLCOLORSTATIC + if (windowClassOf((HWND) lParam, L"edit", NULL) == 0) + if (textfieldReadOnly((HWND) lParam)) + return FALSE; if (SetBkMode((HDC) wParam, TRANSPARENT) == 0) xpanic("error setting transparent background mode to Labels", GetLastError()); paintControlBackground((HWND) lParam, (HDC) wParam);