diff options
| author | Paul Buetow <paul@buetow.org> | 2026-03-05 19:25:09 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-03-05 19:25:09 +0200 |
| commit | c3adb86fda302eeb90c2b07e56aae5abaea469ce (patch) | |
| tree | 6a50addcf57519bc53d28be5981b1d9456649adb /internal/tui/export | |
| parent | bab716a6a5931c211fad2f17ee2f67e8d182a7fc (diff) | |
refactor(tui): migrate source key handling to KeyPressMsg
Diffstat (limited to 'internal/tui/export')
| -rw-r--r-- | internal/tui/export/model.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/tui/export/model.go b/internal/tui/export/model.go index 9c77080..179754d 100644 --- a/internal/tui/export/model.go +++ b/internal/tui/export/model.go @@ -75,7 +75,7 @@ func (m Model) Close() Model { // Update handles modal key navigation and export completion messages. func (m Model) Update(msg tea.Msg) (Model, tea.Cmd) { switch msg := msg.(type) { - case tea.KeyMsg: + case tea.KeyPressMsg: if !m.visible { return m, nil } |
