diff options
| author | adamdottv <[email protected]> | 2025-05-14 06:00:34 -0500 |
|---|---|---|
| committer | adamdottv <[email protected]> | 2025-05-14 06:00:34 -0500 |
| commit | 53a80eac1ed1ec98122a9c2b332f302903078f0a (patch) | |
| tree | bed871f26fb2cd5a9b6de7781820898851ef3af6 | |
| parent | 01b6bf5bb7307246cb2cca7f1cbc8aba693941cc (diff) | |
| download | opencode-53a80eac1ed1ec98122a9c2b332f302903078f0a.tar.gz opencode-53a80eac1ed1ec98122a9c2b332f302903078f0a.zip | |
chore: cleanup
| -rw-r--r-- | internal/tui/tui.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/tui/tui.go b/internal/tui/tui.go index 0a8f0e72a..9ad25c121 100644 --- a/internal/tui/tui.go +++ b/internal/tui/tui.go @@ -6,6 +6,7 @@ import ( "log/slog" "strings" + "github.com/charmbracelet/bubbles/cursor" "github.com/charmbracelet/bubbles/key" "github.com/charmbracelet/bubbles/spinner" tea "github.com/charmbracelet/bubbletea" @@ -186,6 +187,8 @@ func (a appModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) { var cmds []tea.Cmd var cmd tea.Cmd switch msg := msg.(type) { + case cursor.BlinkMsg: + return a.updateAllPages(msg) case spinner.TickMsg: return a.updateAllPages(msg) |
