Commit d267daa4 authored by Vincent Wei's avatar Vincent Wei
Browse files

use dwBkColor instead of iBkColor for compositing schema

Showing with 8 additions and 0 deletions
+8 -0
......@@ -1373,7 +1373,11 @@ int main (int argc, const char* argv[])
WNDCLASS wnd_class;
wnd_class.spClassName = NCSCTRL_DIALOGBOX;
wnd_class.opMask = COP_BKCOLOR;
#ifdef _MGSCHEMA_COMPOSITING
wnd_class.dwBkColor = RGBA_black;
#else
wnd_class.iBkColor = PIXEL_black;
#endif
SetWindowClassInfo (&wnd_class);
wnd_class.spClassName = NCSCTRL_MAINWND;
......
......@@ -195,7 +195,11 @@ int main (int argc, const char* argv[])
WNDCLASS wnd_class;
wnd_class.spClassName = NCSCTRL_DIALOGBOX;
wnd_class.opMask = COP_BKCOLOR;
#ifdef _MGSCHEMA_COMPOSITING
wnd_class.dwBkColor = RGBA_black;
#else
wnd_class.iBkColor = PIXEL_black;
#endif
SetWindowClassInfo (&wnd_class);
wnd_class.spClassName = NCSCTRL_MAINWND;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment