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
This commit is contained in:
parent
4c7cc94cdc
commit
c3528f5b6b
@ -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' });
|
||||
|
Loading…
Reference in New Issue
Block a user