[gnome-shell/wip/fmuellner/notification-redux: 74/88] messageTray: Remove old-style summary notification



commit c94cfa12fdb61cdc36cf8c8434518a63f0545fa7
Author: Florian Müllner <fmuellner gnome org>
Date:   Sat Feb 14 03:19:49 2015 +0100

    messageTray: Remove old-style summary notification

 js/ui/messageTray.js |   15 ++-------------
 1 files changed, 2 insertions(+), 13 deletions(-)
---
diff --git a/js/ui/messageTray.js b/js/ui/messageTray.js
index 2645c44..4db813e 100644
--- a/js/ui/messageTray.js
+++ b/js/ui/messageTray.js
@@ -1560,19 +1560,8 @@ const MessageTray = new Lang.Class({
             if (hasNotifications && nextNotification) {
                 let limited = this._busy || Main.layoutManager.bottomMonitor.inFullscreen;
                 let showNextNotification = (!limited || nextNotification.forFeedback || 
nextNotification.urgency == Urgency.CRITICAL);
-                if (showNextNotification) {
-                    let len = this._notificationQueue.length;
-                    if (false && len > 1) {
-                        this._notificationQueue.length = 0;
-                        let source = new SystemNotificationSource();
-                        this.add(source);
-                        let notification = new Notification(source, ngettext("%d new message", "%d new 
messages", len).format(len));
-                        notification.setTransient(true);
-                        source.notify(notification);
-                    } else {
-                        this._showNotification();
-                    }
-                }
+                if (showNextNotification)
+                    this._showNotification();
             }
         } else if (this._notificationState == State.SHOWN) {
             let expired = (this._userActiveWhileNotificationShown &&


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]