Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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
wine
wine-winehq
Commits
29b39020
Commit
29b39020
authored
Oct 17, 2012
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Fix propagation of the pixel format flag when the parent window is changed.
parent
338dedef
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
window.c
server/window.c
+2
-1
No files found.
server/window.c
View file @
29b39020
...
...
@@ -254,7 +254,8 @@ static int set_parent_window( struct window *win, struct window *parent )
if
(
parent
->
thread
&&
parent
->
thread
!=
win
->
thread
&&
!
is_desktop_window
(
parent
))
attach_thread_input
(
win
->
thread
,
parent
->
thread
);
if
(
win
->
paint_flags
&
PAINT_HAS_PIXEL_FORMAT
)
update_pixel_format_flags
(
win
);
if
(
win
->
paint_flags
&
(
PAINT_HAS_PIXEL_FORMAT
|
PAINT_PIXEL_FORMAT_CHILD
))
update_pixel_format_flags
(
win
);
}
else
/* move it to parent unlinked list */
{
...
...
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