Patch [ 1654055 ] Collapse Tree function fixed

Submitted by Johannes Gubo - deathmeat
This commit is contained in:
croo 2007-02-07 14:51:51 +00:00
parent 6e3630f974
commit f6f6be491e
1 changed files with 2 additions and 1 deletions

View File

@ -952,7 +952,8 @@ public final class VTreePanel extends CPanel
}
else
{
for (int row = 0; row < tree.getRowCount(); row++)
// patch: 1654055 +jgubo Changed direction of collapsing the tree nodes
for (int row = tree.getRowCount(); row > 0; row--)
tree.collapseRow(row);
}
} // expandTree