mirror of
https://github.com/rivo/tview.git
synced 2025-04-26 13:49:06 +08:00
Merge pull request #308 from ollien/fix-row-count
Don't throw away nodes after drawing
This commit is contained in:
commit
2e907d29e4
@ -562,13 +562,7 @@ func (t *TreeView) Draw(screen tcell.Screen) {
|
||||
return
|
||||
}
|
||||
|
||||
// Build the tree if necessary.
|
||||
if t.nodes == nil {
|
||||
t.process()
|
||||
}
|
||||
defer func() {
|
||||
t.nodes = nil // Rebuild during next call to Draw()
|
||||
}()
|
||||
t.process()
|
||||
|
||||
// Scroll the tree.
|
||||
x, y, width, height := t.GetInnerRect()
|
||||
|
Loading…
x
Reference in New Issue
Block a user