From a18648ef1b7d217c7eb61ee451bce26878f827b6 Mon Sep 17 00:00:00 2001 From: "mozilla.mano%sent.com" Date: Wed, 21 Feb 2007 00:06:16 +0000 Subject: [PATCH] Bug 366136 - New items don't appear in the tree view as they are created. r=dietrich. git-svn-id: svn://10.0.0.236/trunk@220617 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/browser/components/places/content/places.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mozilla/browser/components/places/content/places.js b/mozilla/browser/components/places/content/places.js index b2ca6ce36da..66c73ab552c 100755 --- a/mozilla/browser/components/places/content/places.js +++ b/mozilla/browser/components/places/content/places.js @@ -184,6 +184,11 @@ var PlacesOrganizer = { // Items are only excluded on the left pane var options = node.queryOptions.clone(); options.excludeItems = false; + // Unset excludeQueries so incremental update is enabled for the content + // pane. + // XXXmano: remove that once we unset excludeQueries for the left pane. + options.excludeQueries = false; + this._content.load(queries, OptionsFilter.filter(queries, options, null));