diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-06-03 19:09:32 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-06-03 19:09:32 +0000 |
| commit | 4940d007cce43a135f1b448902f5a3571dbce62a (patch) | |
| tree | 4c5c0a9e25dc7f8b9c55634df3ccaa6fe816ddf7 /openbox/focus_cycle_indicator.c | |
| parent | 097d02d9d3d4b2eeea11084c54812de9cd7d14c0 (diff) | |
super amazing enter event skipping.
also mucho fixed for <underMouse>
Diffstat (limited to 'openbox/focus_cycle_indicator.c')
| -rw-r--r-- | openbox/focus_cycle_indicator.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/openbox/focus_cycle_indicator.c b/openbox/focus_cycle_indicator.c index 0af8ab12..203a85ff 100644 --- a/openbox/focus_cycle_indicator.c +++ b/openbox/focus_cycle_indicator.c @@ -119,13 +119,17 @@ void focus_cycle_indicator_shutdown(gboolean reconfig) void focus_cycle_draw_indicator(ObClient *c) { if (!c) { + gulong ignore_start; + + /* kill enter events cause by this unmapping */ + ignore_start = event_start_ignore_all_enters(); + XUnmapWindow(ob_display, focus_indicator.top.win); XUnmapWindow(ob_display, focus_indicator.left.win); XUnmapWindow(ob_display, focus_indicator.right.win); XUnmapWindow(ob_display, focus_indicator.bottom.win); - /* kill enter events cause by this unmapping */ - event_ignore_all_queued_enters(); + event_end_ignore_all_enters(ignore_start); } else { /* if (c) |
