Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Vincent Wei
mg-demos
Commits
d267daa4
Commit
d267daa4
authored
5 years ago
by
Vincent Wei
Browse files
Options
Download
Email Patches
Plain Diff
use dwBkColor instead of iBkColor for compositing schema
parent
5d0d598b
master
dev-4-1
rel-5-0
ver-5-0-11
ver-5-0-10
ver-5-0-9
ver-5-0-6
ver-5-0-3
ver-5-0-2
ver-5-0-0
dev-4-9-1
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
cbplusui/main.cc
+4
-0
cbplusui/main.cc
softkbd/main.cc
+4
-0
softkbd/main.cc
with
8 additions
and
0 deletions
+8
-0
cbplusui/main.cc
View file @
d267daa4
...
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
softkbd/main.cc
View file @
d267daa4
...
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help