Bug 430659 - Saved search in sidebar does not work. (r=mano, a=damon)
This commit is contained in:
Родитель
5749466e45
Коммит
501836ae94
|
@ -943,8 +943,10 @@ PlacesTreeView.prototype = {
|
|||
|
||||
// treat non-expandable queries as non-containers
|
||||
if (PlacesUtils.nodeIsQuery(node)) {
|
||||
asQuery(node);
|
||||
return node.queryOptions.expandQueries;
|
||||
var parent = node.parent;
|
||||
if(PlacesUtils.nodeIsQuery(parent) ||
|
||||
PlacesUtils.nodeIsFolder(parent))
|
||||
return asQuery(parent).queryOptions.expandQueries;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче