diff --git a/mozilla/xpfe/global/resources/content/treePopups.js b/mozilla/xpfe/global/resources/content/treePopups.js index c83a6f81ae6..c32a468154e 100644 --- a/mozilla/xpfe/global/resources/content/treePopups.js +++ b/mozilla/xpfe/global/resources/content/treePopups.js @@ -28,6 +28,9 @@ function BuildTreePopup( treeColGroup, treeHeadRow, popup, skipCell ) var currTreeCol = treeHeadRow.firstChild; var currColNode = treeColGroup.firstChild; while (currTreeCol) { + if (currColNode.tagName == "splitter") + currColNode = currColNode.nextSibling; + if (skipCell != currTreeCol) { // Construct an entry for each cell in the row. var columnName = currTreeCol.getAttribute("value");