blob: d26ef8e6a65243570866f16dede4a048ede1f044 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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 &&
|