diff options
| author | Paul Buetow <paul@buetow.org> | 2025-09-07 14:32:48 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-09-07 14:32:48 +0300 |
| commit | 90e586831c0351fb5808ef5c1eca0692178731c9 (patch) | |
| tree | 28b5edd41ec468ae34dc7f05eb3b994e07b02d71 /internal/hexaiaction | |
| parent | 23482b5d8da5c67da1fc501ddbafdd123be3972c (diff) | |
tui: hide title in hexai-tmux-action menu to save space
Diffstat (limited to 'internal/hexaiaction')
| -rw-r--r-- | internal/hexaiaction/tui.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/hexaiaction/tui.go b/internal/hexaiaction/tui.go index 16988c0..7275480 100644 --- a/internal/hexaiaction/tui.go +++ b/internal/hexaiaction/tui.go @@ -33,7 +33,7 @@ func newModel() model { item{title: "Skip", desc: "", kind: ActionSkip, hotkey: 's'}, } l := list.New(items, oneLineDelegate{}, 0, 0) - l.Title = "Select Hexai Action" + l.SetShowTitle(false) l.SetShowHelp(false) l.SetShowStatusBar(false) l.SetFilteringEnabled(false) |
