From 2439728c4160dc8ba0c90688fa0cddf6c23197a3 Mon Sep 17 00:00:00 2001 From: "reed@reedloden.com" Date: Wed, 7 May 2008 03:14:51 -0700 Subject: [PATCH] Bug 430551 - "bookmarks menu popup stays open after dragging bookmark over it" (set attribute "autoopened" on bookmarks menu when dragging) [p=jdarmochwal@gmx.de (Jan Darmochwal) r=Mano a1.9=beltzner] --- browser/base/content/browser-places.js | 1 + 1 file changed, 1 insertion(+) diff --git a/browser/base/content/browser-places.js b/browser/base/content/browser-places.js index 4be06a0d83f..4d47e0dda93 100644 --- a/browser/base/content/browser-places.js +++ b/browser/base/content/browser-places.js @@ -914,6 +914,7 @@ var PlacesMenuDNDController = { delete this._timers.loadTime; if (event.target.id == "bookmarksMenu") { // If this is the bookmarks menu, tell its menupopup child to show. + event.target.lastChild.setAttribute("autoopened", "true"); event.target.lastChild.showPopup(event.target.lastChild); } },