From 09607f6aa753699d06c915ddbe55585c69caa4cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 6 Apr 2011 08:22:32 +0200 Subject: [PATCH] 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 --- js/ui/appDisplay.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js index 2623a4607..78309361f 100644 --- a/js/ui/appDisplay.js +++ b/js/ui/appDisplay.js @@ -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); } };