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; }