summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrail Finder <wohilas@gmail.com>2025-12-04 11:20:54 +0300
committerGrail Finder <wohilas@gmail.com>2025-12-04 11:20:54 +0300
commit9c6164c2272bcec9e6fb7258a166061a6252dbbd (patch)
tree3a967c684562c5532ad04bcb7e46862ea5cc8cb0
parent8c99344db0115ba75704ab5f947bdb408d448372 (diff)
Enha: update status line on props table exit
-rw-r--r--props_table.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/props_table.go b/props_table.go
index 86acc00..448044c 100644
--- a/props_table.go
+++ b/props_table.go
@@ -293,10 +293,10 @@ func makePropsTable(props map[string]float32) *tview.Table {
table.SetInputCapture(func(event *tcell.EventKey) *tcell.EventKey {
if event.Key() == tcell.KeyRune && event.Rune() == 'x' {
pages.RemovePage(propsPage)
+ updateStatusLine()
return nil
}
return event
})
return table
}
-