Patch [ 1654055 ] Collapse Tree function fixed
Submitted by Johannes Gubo - deathmeat
This commit is contained in:
parent
6e3630f974
commit
f6f6be491e
|
@ -952,7 +952,8 @@ public final class VTreePanel extends CPanel
|
||||||
}
|
}
|
||||||
else
|
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);
|
tree.collapseRow(row);
|
||||||
}
|
}
|
||||||
} // expandTree
|
} // expandTree
|
||||||
|
|
Loading…
Reference in New Issue