diff --git a/js/misc/breakManager.js b/js/misc/breakManager.js index 8b3cce980..42e7c3569 100644 --- a/js/misc/breakManager.js +++ b/js/misc/breakManager.js @@ -950,7 +950,7 @@ class BreakNotificationSource extends GObject.Object { } if (this._notification === null) { - this._notification = new BreakNotification(this._source, this._manager); + this._notification = new BreakNotification(this._source, this._manager, this._app); this._notification.connect('destroy', () => (this._notification = null)); } @@ -1306,13 +1306,14 @@ const BreakNotification = GObject.registerClass({ false), }, }, class BreakNotification extends MessageTray.Notification { - constructor(source, manager) { + constructor(source, manager, app) { super({ source, resident: true, }); this._manager = manager; + this._app = app; this.connect('destroy', this._onDestroy.bind(this)); this._delayAction = null; @@ -1320,6 +1321,11 @@ const BreakNotification = GObject.registerClass({ this._takeAction = null; } + activate() { + this._app.activate(); + super.activate(); + } + _onDestroy(_notification, destroyedReason) { // If it was destroyed by the user (by pressing the close button), skip // the current break.