[MessageTray] do pop-out on hover for long notifications

https://bugzilla.gnome.org/show_bug.cgi?id=606755
This commit is contained in:
Dan Winship
2010-02-01 12:10:38 -05:00
parent 3c9d0fbca6
commit fa60165764
3 changed files with 153 additions and 28 deletions

View File

@ -122,10 +122,7 @@ NotificationDaemon.prototype = {
}
summary = GLib.markup_escape_text(summary, -1);
if (body)
source.notify('<b>' + summary + '</b>: ' + body);
else
source.notify('<b>' + summary + '</b>');
source.notify(summary, body);
return id;
},