summaryrefslogtreecommitdiffhomepage
path: root/internal/tui/components/core
diff options
context:
space:
mode:
authorKujtim Hoxha <[email protected]>2025-05-01 12:48:19 +0200
committeradamdottv <[email protected]>2025-05-01 11:07:47 -0500
commite4680caebb7235988450f6b1d59da2e46a78e567 (patch)
tree94b4a560276748b86c67684b6c3053d587076787 /internal/tui/components/core
parente760d28c5a125f7f4de30cf0491be53e32bb897d (diff)
downloadopencode-e4680caebb7235988450f6b1d59da2e46a78e567.tar.gz
opencode-e4680caebb7235988450f6b1d59da2e46a78e567.zip
some small fixes
Diffstat (limited to 'internal/tui/components/core')
-rw-r--r--internal/tui/components/core/status.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/tui/components/core/status.go b/internal/tui/components/core/status.go
index ca02265e1..28120a430 100644
--- a/internal/tui/components/core/status.go
+++ b/internal/tui/components/core/status.go
@@ -21,7 +21,7 @@ import (
type StatusCmp interface {
tea.Model
- SetHelpMsg(string)
+ SetHelpWidgetMsg(string)
}
type statusCmp struct {
@@ -263,7 +263,7 @@ func (m statusCmp) model() string {
Render(model.Name)
}
-func (m statusCmp) SetHelpMsg(s string) {
+func (m statusCmp) SetHelpWidgetMsg(s string) {
// Update the help widget text using the getHelpWidget function
helpWidget = getHelpWidget(s)
}