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
dba8ad57
Commit
dba8ad57
authored
Feb 25, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11: Use the same full screen test in is_window_managed and update_wm_states.
parent
a2687259
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 @
dba8ad57
...
...
@@ -103,8 +103,8 @@ BOOL is_window_managed( HWND hwnd, UINT swp_flags, const RECT *window_rect )
/* popup with sysmenu == caption are managed */
if
(
style
&
WS_SYSMENU
)
return
TRUE
;
/* full-screen popup windows are managed */
if
(
(
window_rect
->
right
-
window_rect
->
left
)
=
=
screen_width
&&
(
window_rect
->
bottom
-
window_rect
->
top
)
=
=
screen_height
)
if
(
window_rect
->
left
<=
0
&&
window_rect
->
right
>
=
screen_width
&&
window_rect
->
top
<=
0
&&
window_rect
->
bottom
>
=
screen_height
)
return
TRUE
;
}
/* default: not managed */
...
...
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