From: Michael Stapelberg Date: Mon, 23 Nov 2009 07:35:40 +0000 (+0100) Subject: Bugfix: Don’t ignore urgency flag when the client wants to clean it (Thanks Syntropy) X-Git-Tag: 3.d-bf1~15 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=806a3d5e57a298fbc7a0bb58ed55f3f65202eb80;p=i3%2Fi3 Bugfix: Don’t ignore urgency flag when the client wants to clean it (Thanks Syntropy) --- diff --git a/src/handlers.c b/src/handlers.c index d8620044..cc6066b5 100644 --- a/src/handlers.c +++ b/src/handlers.c @@ -951,7 +951,7 @@ int handle_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t } Client *last_focused = SLIST_FIRST(&(c_ws->focus_stack)); - if (client == last_focused) { + if (!client->urgent && client == last_focused) { LOG("Ignoring urgency flag for current client\n"); return 1; }