diff options
| author | adamdotdevin <[email protected]> | 2025-07-21 05:58:24 -0500 |
|---|---|---|
| committer | adamdotdevin <[email protected]> | 2025-07-21 05:58:24 -0500 |
| commit | cd0b2ae0323aa36d3e15b94d8ec9ca0bb81b5597 (patch) | |
| tree | 8e172f64834ec3dbc00bc1a7d2387274be57f8a3 /packages | |
| parent | 8e8796507d9adcb89341dfe01ec499938611ebea (diff) | |
| download | opencode-cd0b2ae0323aa36d3e15b94d8ec9ca0bb81b5597.tar.gz opencode-cd0b2ae0323aa36d3e15b94d8ec9ca0bb81b5597.zip | |
fix(tui): restore spinner ticks
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/tui/internal/components/chat/editor.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/tui/internal/components/chat/editor.go b/packages/tui/internal/components/chat/editor.go index 294e05b4f..c05754cae 100644 --- a/packages/tui/internal/components/chat/editor.go +++ b/packages/tui/internal/components/chat/editor.go @@ -59,8 +59,7 @@ type editorComponent struct { } func (m *editorComponent) Init() tea.Cmd { - return tea.Batch(m.textarea.Focus(), tea.EnableReportFocus) - // return tea.Batch(m.textarea.Focus(), m.spinner.Tick, tea.EnableReportFocus) + return tea.Batch(m.textarea.Focus(), m.spinner.Tick, tea.EnableReportFocus) } func (m *editorComponent) Update(msg tea.Msg) (tea.Model, tea.Cmd) { |
