summaryrefslogtreecommitdiff
path: root/window.go
diff options
context:
space:
mode:
Diffstat (limited to 'window.go')
-rw-r--r--window.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/window.go b/window.go
index 5cdfd8b..76e703d 100644
--- a/window.go
+++ b/window.go
@@ -11,7 +11,7 @@ const welcomeMessage = "senpai dev build. Enter /help for a list of commands."
func (app *App) initWindow() {
app.win.AddBuffer("", "(home)", "")
- app.win.AddLine("", "", ui.NotifyNone, ui.Line{
+ app.win.AddLine("", "", ui.Line{
Head: "--",
Body: ui.PlainString(welcomeMessage),
At: time.Now(),
@@ -39,9 +39,9 @@ func (app *App) queueStatusLine(netID string, line ui.Line) {
func (app *App) addStatusLine(netID string, line ui.Line) {
currentNetID, buffer := app.win.CurrentBuffer()
if currentNetID == netID && buffer != "" {
- app.win.AddLine(netID, buffer, ui.NotifyNone, line)
+ app.win.AddLine(netID, buffer, line)
}
- app.win.AddLine(netID, "", ui.NotifyNone, line)
+ app.win.AddLine(netID, "", line)
}
func (app *App) setStatus() {