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
d4b2865e
Commit
d4b2865e
authored
Jun 27, 2023
by
Arkadiusz Hiler
Committed by
Alexandre Julliard
Jun 28, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
win32u: Don't affect nonclient area unless requested.
The state of the caption / nonclient area should be only changed when FLASHW_CAPTION or FLASHW_STOP are used.
parent
d291f404
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
window.c
dlls/win32u/window.c
+5
-2
No files found.
dlls/win32u/window.c
View file @
d4b2865e
...
...
@@ -4511,11 +4511,11 @@ BOOL WINAPI NtUserFlashWindowEx( FLASHWINFO *info )
win
=
get_win_ptr
(
info
->
hwnd
);
if
(
!
win
||
win
==
WND_OTHER_PROCESS
||
win
==
WND_DESKTOP
)
return
FALSE
;
if
(
info
->
dwFlags
&&
!
(
win
->
flags
&
WIN_NCACTIVATED
))
if
(
info
->
dwFlags
&
FLASHW_CAPTION
&
&
!
(
win
->
flags
&
WIN_NCACTIVATED
))
{
win
->
flags
|=
WIN_NCACTIVATED
;
}
else
else
if
(
!
info
->
dwFlags
)
{
win
->
flags
&=
~
WIN_NCACTIVATED
;
}
...
...
@@ -4536,7 +4536,10 @@ BOOL WINAPI NtUserFlashWindowEx( FLASHWINFO *info )
else
wparam
=
(
hwnd
==
NtUserGetForegroundWindow
());
release_win_ptr
(
win
);
if
(
!
info
->
dwFlags
||
info
->
dwFlags
&
FLASHW_CAPTION
)
send_message
(
hwnd
,
WM_NCACTIVATE
,
wparam
,
0
);
user_driver
->
pFlashWindowEx
(
info
);
return
wparam
;
}
...
...
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