diff options
author | Lars Uebernickel <lars.uebernickel@canonical.com> | 2013-10-04 15:33:37 +0200 |
---|---|---|
committer | Lars Uebernickel <lars.uebernickel@canonical.com> | 2013-10-04 15:33:37 +0200 |
commit | 85967d3b632a1d071a995e6515005e7a20ecff83 (patch) | |
tree | 83946b946ede16afc6a607ec014dfe9803d9f299 /src | |
parent | 273973d1cefd90cae1f06d96531add5fea7dd5bd (diff) | |
download | ayatana-indicator-messages-85967d3b632a1d071a995e6515005e7a20ecff83.tar.gz ayatana-indicator-messages-85967d3b632a1d071a995e6515005e7a20ecff83.tar.bz2 ayatana-indicator-messages-85967d3b632a1d071a995e6515005e7a20ecff83.zip |
app_source_action_check_draw: flip erroneous != to ==
Diffstat (limited to 'src')
-rw-r--r-- | src/im-application-list.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |