Skip to content

Artefacts in "free rows" below the tree after dragging #1

@kleopatra

Description

@kleopatra

reason is that the cell isn't cleared if empty or null item. to fix insert:

        protected void updateItem(TaskNode item, boolean empty) {
            super.updateItem(item, empty);
            // clear cell
            if (item == null || empty) {
                setGraphic(null);
                setText(null);
                return;
            }
            ...

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions