Merge branch 'msg-bar-tab-fix' of sloum/bombadillo into master

Closes #32
This commit is contained in:
Sloom Sloum Sluom IV 2019-09-06 12:14:46 -04:00 committed by Gitea
commit d1360fa0db
1 changed files with 6 additions and 7 deletions

View File

@ -93,15 +93,14 @@ func (s *Screen) DrawMsgBars() {
msg = string(bar.message[:s.Width-len(title)-3]) + "..."
}
_, _ = buf.WriteString(msg)
if buf.Len() < s.Width {
wsLength := s.Width - buf.Len()
_,_ = buf.WriteString(strings.Repeat(" ", wsLength))
}
MoveCursorTo(bar.row, 1)
fmt.Print(buf.String())
fmt.Print(strings.Repeat(" ", s.Width))
fmt.Print("\033[0m")
MoveCursorTo(bar.row, 1)
fmt.Print("\033[7m")
fmt.Print(buf.String())
MoveCursorTo(bar.row, s.Width)
fmt.Print("\033[0m")
}
}