diff options
| author | Grail Finder <wohilas@gmail.com> | 2025-12-04 11:20:54 +0300 |
|---|---|---|
| committer | Grail Finder <wohilas@gmail.com> | 2025-12-04 11:20:54 +0300 |
| commit | 9c6164c2272bcec9e6fb7258a166061a6252dbbd (patch) | |
| tree | 3a967c684562c5532ad04bcb7e46862ea5cc8cb0 | |
| parent | 8c99344db0115ba75704ab5f947bdb408d448372 (diff) | |
Enha: update status line on props table exit
| -rw-r--r-- | props_table.go | 2 |
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 } - |
