TreeView.process() fires the changed callback and therefore needs to remain in input handler. Fixes #579

pull/599/head
Oliver 3 years ago
parent 9f215ef4fd
commit 3ac88670dd

@ -774,6 +774,8 @@ func (t *TreeView) InputHandler() func(event *tcell.EventKey, setFocus func(p Pr
case tcell.KeyEnter:
selectNode()
}
t.process()
})
}

Loading…
Cancel
Save