Revert "workspace: Grab the key focus when hovering over a window"

Turns out this makes interaction with the OSK or candidate popups
using a mouse basically impossible since they get dismissed when the
key focus is captured by a window in the overview.

This reverts commit aeb9f5775f.

https://bugzilla.gnome.org/show_bug.cgi?id=745245
This commit is contained in:
Rui Matos 2015-02-26 17:47:37 +01:00
parent c60eb857bf
commit fdd6fc976c

View File

@ -156,7 +156,6 @@ const WindowClone = new Lang.Class({
this.actor.add_action(clickAction); this.actor.add_action(clickAction);
this.actor.connect('destroy', Lang.bind(this, this._onDestroy)); this.actor.connect('destroy', Lang.bind(this, this._onDestroy));
this.actor.connect('key-press-event', Lang.bind(this, this._onKeyPress)); this.actor.connect('key-press-event', Lang.bind(this, this._onKeyPress));
this.actor.connect('enter-event', Lang.bind(this, this._onEnter));
this._draggable = DND.makeDraggable(this.actor, this._draggable = DND.makeDraggable(this.actor,
{ restoreOnSuccess: true, { restoreOnSuccess: true,
@ -353,10 +352,6 @@ const WindowClone = new Lang.Class({
return false; return false;
}, },
_onEnter: function() {
this.actor.grab_key_focus();
},
_onClicked: function(action, actor) { _onClicked: function(action, actor) {
this._activate(); this._activate();
}, },