Make clicking on windows in the overlay activate the windows

Hook up activating windows in the overlay now that we have
MetaWindow GObject'ified and exposed to gobject-introspection.

svn path=/trunk/; revision=35
This commit is contained in:
Owen Taylor 2008-11-07 17:14:26 +00:00
parent 8da8fd76ca
commit ac6ff95040

View File

@ -200,14 +200,14 @@ Overlay.prototype = {
let me = this;
clone.connect("button-press-event",
function() {
me._activateWindow(w);
function(clone, event) {
me._activateWindow(w, event.get_time());
});
},
_activateWindow : function(w) {
_activateWindow : function(w, time) {
this._deactivate();
log("Activate "+ w.get_description());
w.get_meta_window().activate(time);
},
_deactivate : function() {