From 654b51fef104067ee083dfeb7d5a5ba6d277796a Mon Sep 17 00:00:00 2001 From: Axel Wagner Date: Thu, 29 Jul 2010 20:19:59 +0200 Subject: [PATCH] Correctly parse the urgent-hint --- i3bar/src/workspaces.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/i3bar/src/workspaces.c b/i3bar/src/workspaces.c index e96ee9e3..3d363ecb 100644 --- a/i3bar/src/workspaces.c +++ b/i3bar/src/workspaces.c @@ -44,7 +44,7 @@ static int workspaces_boolean_cb(void* params_, bool val) { } if (!strcmp(params->cur_key, "urgent")) { - params->workspaces_walk->focused = val; + params->workspaces_walk->urgent = val; FREE(params->cur_key); return 1; } -- 2.39.5