From b76c6177d1bbf2b2421200cd9affb9387a59302a Mon Sep 17 00:00:00 2001 From: David Rose Date: Fri, 24 Sep 2004 14:08:13 +0000 Subject: [PATCH] COLOR_BACKGROUND, not +1 --- pandatool/src/win-stats/winStatsLabelStack.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandatool/src/win-stats/winStatsLabelStack.cxx b/pandatool/src/win-stats/winStatsLabelStack.cxx index 46c4d5d575..dbc7f89c96 100755 --- a/pandatool/src/win-stats/winStatsLabelStack.cxx +++ b/pandatool/src/win-stats/winStatsLabelStack.cxx @@ -357,7 +357,7 @@ window_proc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam) { HDC hdc = BeginPaint(hwnd, &ps); RECT rect = { 0, 0, _width, _height }; - FillRect(hdc, &rect, (HBRUSH)(COLOR_BTNFACE + 1)); + FillRect(hdc, &rect, (HBRUSH)COLOR_BACKGROUND); EndPaint(hwnd, &ps); return 0; }