Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
2db72e98
Commit
2db72e98
authored
May 28, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11: Only unmap windows when the window rect changes to unmapped the first time.
parent
61e50e15
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
window.c
dlls/winex11.drv/window.c
+3
-2
No files found.
dlls/winex11.drv/window.c
View file @
2db72e98
...
...
@@ -214,7 +214,7 @@ static BOOL is_window_managed( HWND hwnd, UINT swp_flags, const RECT *window_rec
/***********************************************************************
*
X11DRV_
is_window_rect_mapped
* is_window_rect_mapped
*
* Check if the X whole window should be mapped based on its rectangle
*/
...
...
@@ -2329,7 +2329,8 @@ void CDECL X11DRV_WindowPosChanged( HWND hwnd, HWND insert_after, UINT swp_flags
if
(
data
->
mapped
)
{
if
(((
swp_flags
&
SWP_HIDEWINDOW
)
&&
!
(
new_style
&
WS_VISIBLE
))
||
(
event_type
!=
ConfigureNotify
&&
!
is_window_rect_mapped
(
rectWindow
)))
(
event_type
!=
ConfigureNotify
&&
!
is_window_rect_mapped
(
rectWindow
)
&&
is_window_rect_mapped
(
&
old_window_rect
)))
unmap_window
(
display
,
data
);
}
...
...
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