Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
20faca5b
Commit
20faca5b
authored
Jul 21, 2021
by
Dmitry Timoshkov
Committed by
Vitaly Lipatov
Jul 30, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11.drv: Make window "Klass Dopuska" not managed. (eterbug #15122)
Signed-off-by:
Dmitry Timoshkov
<
dmitry@baikal.ru
>
Signed-off-by:
Pavel Beketov
<
mais@etersoft.ru
>
parent
f49ff1ce
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
window.c
dlls/winex11.drv/window.c
+9
-0
No files found.
dlls/winex11.drv/window.c
View file @
20faca5b
...
...
@@ -278,6 +278,15 @@ static BOOL is_window_managed( HWND hwnd, UINT swp_flags, const RECT *window_rec
return
FALSE
;
}
/* Make "Klass Dopuska" not managed, eterbug #15122 */
if
(
!
strncmp
(
buf
,
"HwndWrapper[DefaultDomain;;"
,
27
)
&&
(
style
==
0x06cf0000
||
style
==
0x060f0000
||
style
==
0x160f0000
||
style
==
0x16080000
||
style
==
0x06080000
)
&&
(
ex_style
==
0x00000100
||
ex_style
==
0
))
{
TRACE
(
"Klass Dopuska: %p => NOT managed
\n
"
,
hwnd
);
return
FALSE
;
}
/* child windows are not managed */
if
((
style
&
(
WS_CHILD
|
WS_POPUP
))
==
WS_CHILD
)
return
FALSE
;
/* activated windows are 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