From 4ddc371064d979e86023762a9e9e4bab0b52bc98 Mon Sep 17 00:00:00 2001 From: okan Date: Thu, 6 Feb 2014 20:58:46 +0000 Subject: Some clients set the urgency flag even if they are the active client; prevent annoying behavior by only setting the cwm urgency flag if the client is not active; diff from Thomas Adam. --- client.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'client.c') diff --git a/client.c b/client.c index 684dacd..2ac5719 100644 --- a/client.c +++ b/client.c @@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: client.c,v 1.171 2014/02/03 20:20:39 okan Exp $ + * $OpenBSD: client.c,v 1.172 2014/02/06 20:58:46 okan Exp $ */ #include @@ -491,7 +491,8 @@ client_unhide(struct client_ctx *cc) void client_urgency(struct client_ctx *cc) { - cc->flags |= CLIENT_URGENCY; + if (!cc->active) + cc->flags |= CLIENT_URGENCY; } void -- cgit v1.2.3-2-gb3c3