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 5759fa17dee0ab8b382bb02aa0f7969543e0a4c1 (commit) from d2137791166e8469f0671c4081260c7a9bff3235 (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/5759fa17dee0ab8b382bb02aa0f7969543e0a...
commit 5759fa17dee0ab8b382bb02aa0f7969543e0a4c1 Author: Cyril Hrubis metan@ucw.cz Date: Sat Jan 19 14:19:42 2013 +0100
backends: X11: Flush the connection after set_attributes().
Otherwise the window title may stay unchanged util you have received xevent (if you are using select on the X11 fd).
diff --git a/libs/backends/GP_X11.c b/libs/backends/GP_X11.c index 696cc0e..63d8162 100644 --- a/libs/backends/GP_X11.c +++ b/libs/backends/GP_X11.c @@ -247,7 +247,9 @@ static int x11_set_attributes(struct GP_Backend *self, GP_DEBUG(3, "Setting window size to %ux%u", w, h); XResizeWindow(x11->dpy, x11->win, w, h); } - + + XFlush(x11->dpy); + XUnlockDisplay(x11->dpy);
return 0;
-----------------------------------------------------------------------
Summary of changes: libs/backends/GP_X11.c | 4 +++- 1 files changed, 3 insertions(+), 1 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.