From c3528f5b6bf7af29bc6a11c9f8742966e8c57656 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Tue, 22 Nov 2011 19:28:23 +0100 Subject: [PATCH] lookingGlass: Fix global key press handler No idea why connecting a key-press-event to a non-reactive actor used to work, but some Clutter update broke it. Obvious fix is to make the actor reactive. https://bugzilla.gnome.org/show_bug.cgi?id=664582 --- js/ui/lookingGlass.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/ui/lookingGlass.js b/js/ui/lookingGlass.js index 495b987ee..2d9c0541b 100644 --- a/js/ui/lookingGlass.js +++ b/js/ui/lookingGlass.js @@ -889,7 +889,8 @@ LookingGlass.prototype = { this.actor = new St.BoxLayout({ name: 'LookingGlassDialog', style_class: 'lg-dialog', vertical: true, - visible: false }); + visible: false, + reactive: true }); this.actor.connect('key-press-event', Lang.bind(this, this._globalKeyPressEvent)); this._interfaceSettings = new Gio.Settings({ schema: 'org.gnome.desktop.interface' });