app-search-result: Fix launching on another workspace

dragActivateResult() called a non-existent method, fix that.

https://bugzilla.gnome.org/show_bug.cgi?id=645990
This commit is contained in:
Florian Müllner 2011-04-06 08:22:32 +02:00
parent 1c4a33eb78
commit 09607f6aa7

View File

@ -313,7 +313,7 @@ BaseAppSearchProvider.prototype = {
timestamp: null });
let app = this._appSys.get_app(id);
app.open_new_window(params.workspace ? params.workspace.get_index() : -1);
app.open_new_window(params.workspace ? params.workspace.index() : -1);
}
};