Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
742a0bca52 | |||
d606ce6776 | |||
7ff63a26b7 |
7
NEWS
7
NEWS
@ -1,3 +1,10 @@
|
|||||||
|
3.2.2.1
|
||||||
|
=======
|
||||||
|
* Fix several regressions with tray icons introduced in 3.2.2 [Owen; #664138]
|
||||||
|
|
||||||
|
Contributors:
|
||||||
|
Owen Taylor
|
||||||
|
|
||||||
3.2.2
|
3.2.2
|
||||||
=====
|
=====
|
||||||
* Fix crash when searching in the shell caused by .desktop files
|
* Fix crash when searching in the shell caused by .desktop files
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
AC_PREREQ(2.63)
|
AC_PREREQ(2.63)
|
||||||
AC_INIT([gnome-shell],[3.2.2],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell],[gnome-shell])
|
AC_INIT([gnome-shell],[3.2.2.1],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell],[gnome-shell])
|
||||||
|
|
||||||
AC_CONFIG_HEADERS([config.h])
|
AC_CONFIG_HEADERS([config.h])
|
||||||
AC_CONFIG_SRCDIR([src/shell-global.c])
|
AC_CONFIG_SRCDIR([src/shell-global.c])
|
||||||
|
@ -480,7 +480,7 @@ NotificationDaemon.prototype = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
_onTrayIconRemoved: function(o, icon) {
|
_onTrayIconRemoved: function(o, icon) {
|
||||||
let source = this._lookupSource(icon.pid, null, true);
|
let source = this._lookupSource(null, icon.pid, true);
|
||||||
if (source)
|
if (source)
|
||||||
source.destroy();
|
source.destroy();
|
||||||
}
|
}
|
||||||
@ -488,8 +488,8 @@ NotificationDaemon.prototype = {
|
|||||||
|
|
||||||
DBus.conformExport(NotificationDaemon.prototype, NotificationDaemonIface);
|
DBus.conformExport(NotificationDaemon.prototype, NotificationDaemonIface);
|
||||||
|
|
||||||
function Source(title, pid, sender) {
|
function Source(title, pid, sender, trayIcon) {
|
||||||
this._init(title, pid, sender);
|
this._init(title, pid, sender, trayIcon);
|
||||||
}
|
}
|
||||||
|
|
||||||
Source.prototype = {
|
Source.prototype = {
|
||||||
|
Reference in New Issue
Block a user