Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
4c96559e
Commit
4c96559e
authored
Jan 15, 2003
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./modules/video_output/x11/xcommon.c: we ignore MapNotify and UnmapNotify
events once our window has been properly mapped.
parent
f9ceeacc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
modules/video_output/x11/xcommon.c
modules/video_output/x11/xcommon.c
+6
-6
No files found.
modules/video_output/x11/xcommon.c
View file @
4c96559e
...
...
@@ -2,7 +2,7 @@
* xcommon.c: Functions common to the X11 and XVideo plugins
*****************************************************************************
* Copyright (C) 1998-2001 VideoLAN
* $Id: xcommon.c,v 1.
9 2003/01/09 18:06:06
sam Exp $
* $Id: xcommon.c,v 1.
10 2003/01/15 13:48:14
sam Exp $
*
* Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
...
...
@@ -686,13 +686,13 @@ static int ManageVideo( vout_thread_t *p_vout )
ToggleCursor
(
p_vout
);
}
}
/* Reparent move -- XXX: why are we getting this ? */
else
if
(
xevent
.
type
==
ReparentNotify
)
else
if
(
xevent
.
type
==
ReparentNotify
/* XXX: why do we get this? */
||
xevent
.
type
==
MapNotify
||
xevent
.
type
==
UnmapNotify
)
{
;
/* Ignore these events */
}
/* Other event */
else
else
/* Other events */
{
msg_Warn
(
p_vout
,
"unhandled event %d received"
,
xevent
.
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