Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Jean-Baptiste Kempf
VLC
Commits
ec2abcf5
Commit
ec2abcf5
authored
Aug 16, 2004
by
gbazin
Browse files
* modules/video_output/x11/xcommon.c: play nice even when there isn't any window manager.
parent
e1d934ce
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/video_output/x11/xcommon.c
View file @
ec2abcf5
...
...
@@ -1043,6 +1043,10 @@ static int CreateWindow( vout_thread_t *p_vout, x11_window_t *p_win )
&&
(
xevent
.
xexpose
.
window
==
p_win
->
base_window
)
)
{
b_expose
=
VLC_TRUE
;
/* ConfigureNotify isn't sent if there isn't a window manager.
* Expose should be the last event to be received so it should
* be fine to assume we won't receive it anymore. */
b_configure_notify
=
VLC_TRUE
;
}
else
if
(
(
xevent
.
type
==
MapNotify
)
&&
(
xevent
.
xmap
.
window
==
p_win
->
base_window
)
)
...
...
Write
Preview
Supports
Markdown
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