diff options
author | Jason Conti <jason.conti@gmail.com> | 2016-08-29 13:21:07 -0400 |
---|---|---|
committer | Jason Conti <jason.conti@gmail.com> | 2016-08-29 13:21:07 -0400 |
commit | 700170f70c60fc316f0f310629e42773c818ff84 (patch) | |
tree | b3a2c9c14028889deae7962d1ce2bbe65cd46f85 /src | |
parent | ed985a8f874193412032535b3fc4fa2c0c906de2 (diff) | |
download | ayatana-indicator-notifications-700170f70c60fc316f0f310629e42773c818ff84.tar.gz ayatana-indicator-notifications-700170f70c60fc316f0f310629e42773c818ff84.tar.bz2 ayatana-indicator-notifications-700170f70c60fc316f0f310629e42773c818ff84.zip |
* When updating the notification count on the clear item, deactivate the menu0.3.1
shell if that count is zero. This avoids leaving a single clear menuitem on
screen after all the notifications have been dismissed.
* Bump version.
Diffstat (limited to 'src')
-rw-r--r-- | src/indicator-notifications.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/indicator-notifications.c b/src/indicator-notifications.c index 5cf9497..0ca4a6a 100644 --- a/src/indicator-notifications.c +++ b/src/indicator-notifications.c @@ -463,6 +463,10 @@ update_clear_item_markup(IndicatorNotifications *self) gtk_label_set_markup(GTK_LABEL(self->priv->clear_item_label), markup); g_free(markup); + + if (total_length == 0) { + gtk_menu_shell_deactivate(GTK_MENU_SHELL(self->priv->menu)); + } } /** |