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/popup.c | |
| parent | 097d02d9d3d4b2eeea11084c54812de9cd7d14c0 (diff) | |
super amazing enter event skipping.
also mucho fixed for <underMouse>
Diffstat (limited to 'openbox/popup.c')
| -rw-r--r-- | openbox/popup.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/openbox/popup.c b/openbox/popup.c index f46a3a7f..86d4fb4d 100644 --- a/openbox/popup.c +++ b/openbox/popup.c @@ -265,11 +265,15 @@ void popup_delay_show(ObPopup *self, gulong usec, gchar *text) void popup_hide(ObPopup *self) { if (self->mapped) { + gulong ignore_start; + + /* kill enter events cause by this unmapping */ + ignore_start = event_start_ignore_all_enters(); + XUnmapWindow(ob_display, self->bg); self->mapped = FALSE; - /* kill enter events cause by this unmapping */ - event_ignore_all_queued_enters(); + event_end_ignore_all_enters(ignore_start); } else if (self->delay_mapped) { ob_main_loop_timeout_remove(ob_main_loop, popup_show_timeout); self->delay_mapped = FALSE; |
