treeChanged must be called after any structural change to the [Tree] (adding or deleting nodes). It calls SendChangeEvent to notify of changes.
(original ...events.Event)
| 828 | // change to the [Tree] (adding or deleting nodes). |
| 829 | // It calls SendChangeEvent to notify of changes. |
| 830 | func (tr *Tree) treeChanged(original ...events.Event) { |
| 831 | tr.sendChangeEvent(original...) |
| 832 | } |
| 833 | |
| 834 | // sendChangeEventReSync sends an [events.Change] event on the RootView node. |
| 835 | // If SyncNode != nil, it also does a re-sync from root. |
no test coverage detected