diff options
| author | Dana Jansens <danakj@orodu.net> | 2010-06-14 13:52:21 -0400 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2010-06-14 13:52:21 -0400 |
| commit | aa3685d16af4a565eecdc39047ee8d140ef5cd99 (patch) | |
| tree | dbd52b14ef66f591f9d1becb813f802c4db337c6 /openbox/event.c | |
| parent | 79cf72d17ff42e5bc8eb1adbd98bb42aa71fb085 (diff) | |
add XFlush to g_timeout callbacks
GMainLoop doesn't cause an flush to occur after handling a timeout.
Diffstat (limited to 'openbox/event.c')
| -rw-r--r-- | openbox/event.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/openbox/event.c b/openbox/event.c index 9701ad62..46baa6dd 100644 --- a/openbox/event.c +++ b/openbox/event.c @@ -2079,6 +2079,7 @@ static gboolean focus_delay_func(gpointer data) if (client_focus(d->client) && config_focus_raise) stacking_raise(CLIENT_AS_WINDOW(d->client)); event_curtime = old; + XFlush(obt_display); return FALSE; /* no repeat */ } @@ -2091,6 +2092,7 @@ static gboolean unfocus_delay_func(gpointer data) event_curserial = d->serial; focus_nothing(); event_curtime = old; + XFlush(obt_display); return FALSE; /* no repeat */ } |
