diff options
author | Lars Uebernickel <lars.uebernickel@canonical.com> | 2012-08-24 18:41:21 +0200 |
---|---|---|
committer | Lars Uebernickel <lars.uebernickel@canonical.com> | 2012-08-24 18:41:21 +0200 |
commit | 1396ab4d4d799a7d51c8ac24b39921e81c900152 (patch) | |
tree | 9e5127b72a64c494e3f8729348bcb19bac0ecc54 /src | |
parent | 28c6d543fc310d5098edb61d506aa8383a96de6f (diff) | |
download | ayatana-indicator-messages-1396ab4d4d799a7d51c8ac24b39921e81c900152.tar.gz ayatana-indicator-messages-1396ab4d4d799a7d51c8ac24b39921e81c900152.tar.bz2 ayatana-indicator-messages-1396ab4d4d799a7d51c8ac24b39921e81c900152.zip |
Request showing the chat section also when the app is not running
Diffstat (limited to 'src')
-rw-r--r-- | src/app-section.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/app-section.c b/src/app-section.c index 1574892..0487fbb 100644 --- a/src/app-section.c +++ b/src/app-section.c @@ -695,6 +695,5 @@ app_section_get_uses_chat_status (AppSection *self) { AppSectionPrivate * priv = self->priv; - /* chat status is only useful when the app is running */ - return priv->uses_chat_status && priv->source_actions; + return priv->uses_chat_status; } |