From 8aa56e373fa066ef0bb42f546856f48232d9bf04 Mon Sep 17 00:00:00 2001 From: Marina Zhurakhinskaya Date: Tue, 10 Mar 2009 13:33:58 -0400 Subject: [PATCH] =?UTF-8?q?Bug=20574691=20=E2=80=93=20Stay=20in=20the=20ov?= =?UTF-8?q?erlay=20mode=20after=20drag=20and=20drop?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Just calling launch() on the item instead of activate(), launches the item but doesn't close the overlay mode. --- js/ui/workspaces.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/workspaces.js b/js/ui/workspaces.js index 31ed22d6a..53b509a36 100644 --- a/js/ui/workspaces.js +++ b/js/ui/workspaces.js @@ -751,7 +751,7 @@ Workspace.prototype = { return true; } else if (source instanceof GenericDisplay.GenericDisplayItem) { this._metaWorkspace.activate(time); - source.activate(); + source.launch(); return true; }