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
66814d0d
Commit
66814d0d
authored
Dec 28, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11: Make the tool window flag take precedence when setting the window type.
This prevents some menus from being marked as dialogs.
parent
a13078ee
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
window.c
dlls/winex11.drv/window.c
+2
-3
No files found.
dlls/winex11.drv/window.c
View file @
66814d0d
...
...
@@ -1198,10 +1198,9 @@ static void set_wm_hints( Display *display, struct x11drv_win_data *data )
else
if
(
style
&
WS_MINIMIZEBOX
)
window_type
=
x11drv_atom
(
_NET_WM_WINDOW_TYPE_NORMAL
);
else
if
(
style
&
WS_DLGFRAME
)
window_type
=
x11drv_atom
(
_NET_WM_WINDOW_TYPE_DIALOG
);
else
if
(
ex_style
&
WS_EX_DLGMODALFRAME
)
window_type
=
x11drv_atom
(
_NET_WM_WINDOW_TYPE_DIALOG
);
/* many window managers don't handle utility windows very well, so we don't use TYPE_UTILITY here */
else
if
(
ex_style
&
WS_EX_TOOLWINDOW
)
window_type
=
x11drv_atom
(
_NET_WM_WINDOW_TYPE_NORMAL
);
else
if
((
style
&
WS_POPUP
)
&&
owner
)
window_type
=
x11drv_atom
(
_NET_WM_WINDOW_TYPE_DIALOG
);
#if 0 /* many window managers don't handle utility windows very well */
else if (ex_style & WS_EX_TOOLWINDOW) window_type = x11drv_atom(_NET_WM_WINDOW_TYPE_UTILITY);
#endif
else
window_type
=
x11drv_atom
(
_NET_WM_WINDOW_TYPE_NORMAL
);
XChangeProperty
(
display
,
data
->
whole_window
,
x11drv_atom
(
_NET_WM_WINDOW_TYPE
),
...
...
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