summaryrefslogtreecommitdiff
path: root/ui/ui.go
diff options
context:
space:
mode:
Diffstat (limited to 'ui/ui.go')
-rw-r--r--ui/ui.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/ui.go b/ui/ui.go
index 03a0aee..ef8fea6 100644
--- a/ui/ui.go
+++ b/ui/ui.go
@@ -136,8 +136,8 @@ func (ui *UI) RemoveBuffer(title string) {
_ = ui.bs.Remove(title)
}
-func (ui *UI) AddLine(buffer string, highlight bool, line Line) {
- ui.bs.AddLine(buffer, highlight, line)
+func (ui *UI) AddLine(buffer string, notify NotifyType, line Line) {
+ ui.bs.AddLine(buffer, notify, line)
}
func (ui *UI) AddLines(buffer string, lines []Line) {