You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/x11-misc/unclutter/files/unclutter-8-FocusOut.patch

18 lines
525 B

Description: Fixes blinking pointer and 100% CPU usage with GTK applications
Author: Tao Nelson <taobert@gmail.com>
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 &&