For those who play maximized instead of fullscreen, it would be nice to set the window caption to a dark color like #292929, overriding the user theme caption color (since it cant go dark enough), it is a very simple 4 line addition using the desktop window manager win32 api
something like
DWORD Attrib = 0x292929;
DwmSetWindowAttribute(WindowHandle, DWMWA_CAPTION_COLOR, &Attrib, sizeof(COLORREF));
Please sign in to leave a comment.
0 Comments