30 lines
1.3 KiB
Diff
30 lines
1.3 KiB
Diff
|
From 240f3faf6e58070fa98cab30bd2b9ff83f759a1c Mon Sep 17 00:00:00 2001
|
||
|
From: =?UTF-8?q?Florian=20M=C3=BCllner?= <fmuellner@gnome.org>
|
||
|
Date: Wed, 14 Nov 2018 19:38:33 +0100
|
||
|
Subject: [PATCH 02/25] windowAttentionHandler: Fix syntax errors
|
||
|
|
||
|
Gah, why didn't we catch those?!
|
||
|
---
|
||
|
js/ui/windowAttentionHandler.js | 4 ++--
|
||
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||
|
|
||
|
diff --git a/js/ui/windowAttentionHandler.js b/js/ui/windowAttentionHandler.js
|
||
|
index a8c688ef3..3e53f60b5 100644
|
||
|
--- a/js/ui/windowAttentionHandler.js
|
||
|
+++ b/js/ui/windowAttentionHandler.js
|
||
|
@@ -68,9 +68,9 @@ var Source = new Lang.Class({
|
||
|
|
||
|
this.signalIDs = [];
|
||
|
this.signalIDs.push(this._window.connect('notify::demands-attention',
|
||
|
- this._sync.bind(this));
|
||
|
+ this._sync.bind(this)));
|
||
|
this.signalIDs.push(this._window.connect('notify::urgent',
|
||
|
- this._sync.bind(this));
|
||
|
+ this._sync.bind(this)));
|
||
|
this.signalIDs.push(this._window.connect('focus',
|
||
|
() => { this.destroy(); }));
|
||
|
this.signalIDs.push(this._window.connect('unmanaged',
|
||
|
--
|
||
|
2.20.0
|
||
|
|