We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 969b550 commit 14e264fCopy full SHA for 14e264f
modules/highgui/src/window_w32.cpp
@@ -250,13 +250,13 @@ CV_IMPL int cvInitSystem( int, char** )
250
wndc.lpszMenuName = highGUIclassName;
251
wndc.hIcon = LoadIcon(0, IDI_APPLICATION);
252
wndc.hCursor = (HCURSOR)LoadCursor(0, (LPSTR)(size_t)IDC_CROSS );
253
- wndc.hbrBackground = (HBRUSH)GetStockObject(GRAY_BRUSH);
+ wndc.hbrBackground = (HBRUSH)GetStockObject(DKGRAY_BRUSH);
254
255
RegisterClass(&wndc);
256
257
wndc.lpszClassName = mainHighGUIclassName;
258
wndc.lpszMenuName = mainHighGUIclassName;
259
260
wndc.lpfnWndProc = MainWindowProc;
261
262
0 commit comments