Bug 465693 - Dragging a bookmark from the bookmarks toolbar to tabstrip breaks bookmarks toolbar, r=dietrich a=beltzner, CLOSED TREE

This commit is contained in:
Marco Bonardo 2008-11-21 01:56:21 +01:00
Родитель a90323e6b2
Коммит b8d102ee13
1 изменённых файлов: 3 добавлений и 6 удалений

Просмотреть файл

@ -1122,11 +1122,6 @@
]]></handler>
<handler event="dragleave"><![CDATA[
// Only handle dragleaves for the toolbar itself (and not for its child
// nodes)
if (event.target != this)
return;
PlacesControllerDragHelper.currentDropTarget = null;
PlacesControllerDragHelper.currentDataTransfer = null;
@ -1137,10 +1132,12 @@
this._ibTimer.cancel();
this._ibTimer = this._setTimer(10);
// Close any folder being hovered over
// If we hovered over a folder, close it now
if (this._overFolder.node)
this._overFolder.closeTimer = this._setTimer(this._overFolder.hoverTime);
]]></handler>
<handler event="dragend"><![CDATA[
this._draggedNode = null;
]]></handler>