This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project gfxprim.git.
The branch, master has been updated via 96d41c793e2546dadb958eab5743291f7a6e0d73 (commit) from a7806826a3e654dcb0127a5776d63c5b388964fe (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- http://repo.or.cz/w/gfxprim.git/commit/96d41c793e2546dadb958eab5743291f7a6e0...
commit 96d41c793e2546dadb958eab5743291f7a6e0d73 Author: Cyril Hrubis metan@ucw.cz Date: Fri May 3 22:07:56 2013 +0200
backends: X11: Filter out MapNotify and MapReparent
Signed-off-by: Cyril Hrubis metan@ucw.cz
diff --git a/libs/backends/GP_InputDriverX11.c b/libs/backends/GP_InputDriverX11.c index a2bb7ef..750dc17 100644 --- a/libs/backends/GP_InputDriverX11.c +++ b/libs/backends/GP_InputDriverX11.c @@ -286,6 +286,12 @@ void GP_InputDriverX11EventPut(struct GP_EventQueue *event_queue, } #endif break; + case MapNotify: + GP_DEBUG(1, "MapNotify event received"); + break; + case ReparentNotify: + GP_DEBUG(1, "ReparentNotify event received"); + break; default: GP_WARN("Unhandled X11 event type %u", ev->type); }
-----------------------------------------------------------------------
Summary of changes: libs/backends/GP_InputDriverX11.c | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-)
repo.or.cz automatic notification. Contact project admin jiri.bluebear.dluhos@gmail.com if you want to unsubscribe, or site admin admin@repo.or.cz if you receive no reply.