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
373dc890
Commit
373dc890
authored
Feb 16, 2005
by
Lauri Tulmin
Committed by
Alexandre Julliard
Feb 16, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make minimized windows stay minimized.
parent
10e5c9e8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
winpos.c
dlls/x11drv/winpos.c
+2
-2
No files found.
dlls/x11drv/winpos.c
View file @
373dc890
...
...
@@ -769,7 +769,7 @@ BOOL X11DRV_set_window_pos( HWND hwnd, HWND insert_after, const RECT *rectWindow
/* FIXME: copy the valid bits */
if
(
data
->
whole_window
)
if
(
data
->
whole_window
&&
!
(
swp_flags
&
SWP_WINE_NOHOSTMOVE
)
)
{
if
((
old_style
&
WS_VISIBLE
)
&&
!
(
new_style
&
WS_VISIBLE
))
{
...
...
@@ -791,7 +791,7 @@ BOOL X11DRV_set_window_pos( HWND hwnd, HWND insert_after, const RECT *rectWindow
X11DRV_sync_window_position
(
display
,
data
,
swp_flags
,
rectClient
,
&
new_whole_rect
);
if
(
data
->
whole_window
)
if
(
data
->
whole_window
&&
!
(
swp_flags
&
SWP_WINE_NOHOSTMOVE
)
)
{
if
(
!
(
old_style
&
WS_VISIBLE
)
&&
(
new_style
&
WS_VISIBLE
))
{
...
...
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