Merges 2.0.0 into master for final release #106

Manually merged
sloum merged 195 commits from develop into master 2019-12-01 17:10:03 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 207a45d678 - Show all commits

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, " "))