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
8623fdc2
Commit
8623fdc2
authored
Aug 07, 1999
by
Francis Beaudet
Committed by
Alexandre Julliard
Aug 07, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
If the window is already the topmost window in ShowWindow(SW_SHOW), it
must not be activated.
parent
34264f26
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
winpos.c
windows/winpos.c
+9
-0
No files found.
windows/winpos.c
View file @
8623fdc2
...
...
@@ -1331,6 +1331,15 @@ BOOL WINAPI ShowWindow( HWND hwnd, INT cmd )
/* fall through */
case
SW_SHOW
:
swp
|=
SWP_SHOWWINDOW
|
SWP_NOSIZE
|
SWP_NOMOVE
;
/*
* ShowWindow has a little peculiar behavior that if the
* window is already the topmost window, it will not
* activate it.
*/
if
(
GetTopWindow
((
HWND
)
0
)
==
hwnd
)
swp
|=
SWP_NOACTIVATE
;
break
;
case
SW_SHOWNOACTIVATE
:
...
...
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