Should solve tab in url issue re msg bar overflowing onto second line

This commit is contained in:
sloumdrone 2019-09-03 20:18:02 -07:00
parent 309d6244e1
commit adf29bda02
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")
}
}