Bug 574691 – Stay in the overlay mode after drag and drop

Just calling launch() on the item instead of activate(), launches the item but doesn't close the overlay mode.
This commit is contained in:
Marina Zhurakhinskaya 2009-03-10 13:33:58 -04:00
parent 508d6021da
commit 8aa56e373f

View File

@ -751,7 +751,7 @@ Workspace.prototype = {
return true;
} else if (source instanceof GenericDisplay.GenericDisplayItem) {
this._metaWorkspace.activate(time);
source.activate();
source.launch();
return true;
}