mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-18 07:34:54 +00:00
extensionSystem: Fix opening Extensions app from notification
Launching the app is implemented by the source's open() method, but only external notifications are hooked up to call into the source when no default action was provided. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1595>
This commit is contained in:
parent
db9a008e8a
commit
ddc2e0f4cb
1 changed files with 2 additions and 0 deletions
|
|
@ -252,6 +252,8 @@ var ExtensionManager = class {
|
|||
let notification = new MessageTray.Notification(source,
|
||||
_('Extension Updates Available'),
|
||||
_('Extension updates are ready to be installed.'));
|
||||
notification.connect('activated',
|
||||
() => source.open());
|
||||
source.showNotification(notification);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue