HOT FIX: Removes underwrite for lines when bookmarks is closed

This commit is contained in:
sloumdrone 2019-10-10 21:28:51 -07:00
parent 93ec221af9
commit 207a45d678
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ func (c *client) Draw() {
} else {
for i := 0; i < c.Height-3; i++ {
if i < len(pageContent) {
screen.WriteString(fmt.Sprintf("%-*.*s", c.Width-1, c.Width-1, pageContent[i]))
screen.WriteString(fmt.Sprintf("%-*.*s", c.Width, c.Width, pageContent[i]))
screen.WriteString("\n")
} else {
screen.WriteString(fmt.Sprintf("%-*.*s", c.Width, c.Width, " "))