Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Aleksandr Isakov
wine-fonts
Commits
e5466696
Commit
e5466696
authored
Jan 24, 2015
by
Dmitry Timoshkov
Committed by
Vitaly Lipatov
Jul 30, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11: Fix handling of window attributes for WS_EX_LAYERED | WS_EX_COMPOSITED.
parent
e52c9994
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
window.c
dlls/winex11.drv/window.c
+2
-2
No files found.
dlls/winex11.drv/window.c
View file @
e5466696
...
...
@@ -308,7 +308,7 @@ static unsigned long get_mwm_decorations( struct x11drv_win_data *data,
if
(
data
->
shaped
)
return
0
;
if
(
ex_style
&
WS_EX_TOOLWINDOW
)
return
0
;
if
(
ex_style
&
WS_EX_LAYERED
)
return
0
;
if
(
(
ex_style
&
(
WS_EX_LAYERED
|
WS_EX_COMPOSITED
))
==
WS_EX_LAYERED
)
return
0
;
if
((
style
&
WS_CAPTION
)
==
WS_CAPTION
)
{
...
...
@@ -2703,7 +2703,7 @@ void X11DRV_WindowPosChanged( HWND hwnd, HWND insert_after, UINT swp_flags,
BOOL
needs_map
=
TRUE
;
/* layered windows are mapped only once their attributes are set */
if
(
NtUserGetWindowLongW
(
hwnd
,
GWL_EXSTYLE
)
&
WS_EX_LAYERED
)
if
(
(
NtUserGetWindowLongW
(
hwnd
,
GWL_EXSTYLE
)
&
(
WS_EX_LAYERED
|
WS_EX_COMPOSITED
))
==
WS_EX_LAYERED
)
needs_map
=
data
->
layered
||
IsRectEmpty
(
rectWindow
);
release_win_data
(
data
);
if
(
needs_icon
)
fetch_icon_data
(
hwnd
,
0
,
0
);
...
...
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