Fixed list box bustage. b=36366. r=sfraser, a=beppe

This commit is contained in:
cmanske%netscape.com 2000-06-02 23:15:37 +00:00
parent 12b3563350
commit f89bd7d590

View File

@ -472,7 +472,7 @@ function ClearTreelist(tree)
function GetSelectedTreelistAttribute(tree, attr)
{
if (tree)
return tree.selectedCells[0].getAttribute(attr);
return tree.selectedItems[0].firstChild.firstChild.getAttribute(attr);
return "";
}