From: Michael Stapelberg Date: Fri, 26 Nov 2010 17:37:34 +0000 (+0100) Subject: Bugfix: Upon ExposEvents, redraw decoration also for the window itself X-Git-Tag: tree-pr1~65 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=962fe075b957bb91574e14e57cc3f79e8149c913;p=i3%2Fi3 Bugfix: Upon ExposEvents, redraw decoration also for the window itself In the meantime, windows can have decorations (borders) on their own frame, too. --- diff --git a/src/handlers.c b/src/handlers.c index 7e65af4d..ce2b4e16 100644 --- a/src/handlers.c +++ b/src/handlers.c @@ -609,6 +609,9 @@ int handle_expose_event(void *data, xcb_connection_t *conn, xcb_expose_event_t * return 1; } + if (parent->window) + x_draw_decoration(parent); + TAILQ_FOREACH(con, &(parent->nodes_head), nodes) { LOG("expose for con %p / %s\n", con, con->name); if (con->window)