Jtree removeFromParent() creates whitespace

153 Views Asked by At

I am creating a JTree for a project of mine, and the names for some of the nodes dynamically change, and I'm updating the tree using this function:

public void updateTree() {
    for (Sprite spr : sprites) {
        spr.getMyNode().removeFromParent();
    }
    treeModel.reload();
}

However, when I call this, a row of whitespace shows up like this:

Foo
    Child

Foo2
1

There are 1 best solutions below

0
On

I fixed it, I was experimenting and scrolling through the method list of JTree and found tree.updateUI() and that fixed it.