jer 14/04/10 12:59:14
Added: unclutter-8-FocusOut.patch
unclutter-8-include.patch
Log:
Fix flickering mouse pointer, bug #507312 by teika.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key
A792A613)
Revision Changes Path
1.1 x11-misc/unclutter/files/unclutter-8-FocusOut.patch
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/unclutter/files/unclutter-8-FocusOut.patch?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/unclutter/files/unclutter-8-FocusOut.patch?rev=1.1&content-type=text/plain
Index: unclutter-8-FocusOut.patch
===================================================================
Description: Fixes blinking pointer and 100% CPU usage with GTK applications
Author: Tao Nelson <[email protected]>
Debian-Bug: 266118
--- a/unclutter.c
+++ b/unclutter.c
@@ -399,7 +399,9 @@
do{
XNextEvent(display,&event);
}while(event.type!=LeaveNotify &&
- event.type!=FocusOut &&
+ /* Some gtk applications seem not to like this:
+ * event.type!=FocusOut &&
+ */
event.type!=UnmapNotify &&
event.type!=ConfigureNotify &&
event.type!=CirculateNotify &&
1.1 x11-misc/unclutter/files/unclutter-8-include.patch
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/unclutter/files/unclutter-8-include.patch?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/unclutter/files/unclutter-8-include.patch?rev=1.1&content-type=text/plain
Index: unclutter-8-include.patch
===================================================================
--- a/unclutter.c
+++ b/unclutter.c
@@ -24,6 +24,7 @@
#include <X11/Xutil.h>
#include <X11/Xproto.h>
#include <stdio.h>
+#include <stdlib.h>
#include "vroot.h"
char *progname;