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
9bf9c0b7
Commit
9bf9c0b7
authored
Apr 14, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11: Make WS_EX_APPWINDOW windows have normal type.
parent
8577358e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
window.c
dlls/winex11.drv/window.c
+2
-1
No files found.
dlls/winex11.drv/window.c
View file @
9bf9c0b7
...
...
@@ -857,13 +857,14 @@ void X11DRV_set_wm_hints( Display *display, struct x11drv_win_data *data )
set_size_hints
(
display
,
data
,
style
);
/* set the WM_WINDOW_TYPE */
window_type
=
x11drv_atom
(
_NET_WM_WINDOW_TYPE_NORMAL
);
if
(
style
&
WS_THICKFRAME
)
window_type
=
x11drv_atom
(
_NET_WM_WINDOW_TYPE_NORMAL
);
else
if
(
ex_style
&
WS_EX_APPWINDOW
)
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
);
#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
),
XA_ATOM
,
32
,
PropModeReplace
,
(
unsigned
char
*
)
&
window_type
,
1
);
...
...
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