Bug 590621 - Console panels feature a confusing control, r+a=gavin

This commit is contained in:
Joe Walker 2010-09-13 11:15:48 +01:00
Родитель c51ac7a7f2
Коммит e5dd6348a0
1 изменённых файлов: 7 добавлений и 2 удалений

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

@ -434,12 +434,17 @@ function PropertyPanel(aParent, aDocument, aTitle, aObject, aButtons)
});
// Create the tree.
let tree = this.tree = createElement(aDocument, "tree", { flex: 1 });
let tree = this.tree = createElement(aDocument, "tree", {
flex: 1,
hidecolumnpicker: "true"
});
let treecols = aDocument.createElement("treecols");
appendChild(aDocument, treecols, "treecol", {
primary: "true",
flex: 1
flex: 1,
hideheader: "true",
ignoreincolumnpicker: "true"
});
tree.appendChild(treecols);