From 85967d3b632a1d071a995e6515005e7a20ecff83 Mon Sep 17 00:00:00 2001 From: Lars Uebernickel Date: Fri, 4 Oct 2013 15:33:37 +0200 Subject: app_source_action_check_draw: flip erroneous != to == --- src/im-application-list.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/im-application-list.c b/src/im-application-list.c index 62699df..676631e 100644 --- a/src/im-application-list.c +++ b/src/im-application-list.c @@ -237,7 +237,7 @@ app_source_action_check_draw (Application * app, const gchar * action_name) g_variant_get (state, "(ux&sb)", &count, &time, &string, &draws_attention); /* invisible sources do not draw attention */ - if (count == 0 && time == 0 && (string == NULL || string[0] != '\0')) + if (count == 0 && time == 0 && (string == NULL || string[0] == '\0')) draws_attention = FALSE; g_variant_unref(state); -- cgit v1.2.3