From 40f4e92461855760a6c96243ddaeacd59cc7f507 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Fri, 24 Jun 2011 15:47:24 -0400 Subject: [PATCH] messageTray: Use the count to display the number of unread notifications https://bugzilla.gnome.org/show_bug.cgi?id=649356 --- js/ui/messageTray.js | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/js/ui/messageTray.js b/js/ui/messageTray.js index dd4049f19..a29dedebd 100644 --- a/js/ui/messageTray.js +++ b/js/ui/messageTray.js @@ -948,6 +948,11 @@ Source.prototype = { this._counterLabel.set_text(count.toString()); }, + _updateCount: function() { + let count = this.notifications.length; + this._setCount(count, count > 1); + }, + setTransient: function(isTransient) { this.isTransient = isTransient; }, @@ -986,7 +991,11 @@ Source.prototype = { this.notifications.splice(index, 1); if (this.notifications.length == 0) this._lastNotificationRemoved(); + + this._updateCount(); })); + + this._updateCount(); }, notify: function(notification) { @@ -1023,6 +1032,8 @@ Source.prototype = { for (let i = this.notifications.length - 1; i >= 0; i--) if (!this.notifications[i].resident) this.notifications[i].destroy(); + + this._updateCount(); }, // Default implementation is to destroy this source, but subclasses can override