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.e~6^2~225 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=d2a88f7089bfddad42bf1fbfd19aaa4f61d18922;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 6765be8a..b9a6169c 100644 --- a/src/handlers.c +++ b/src/handlers.c @@ -953,7 +953,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; }