Merge pull request #160 from mattn/fix-windows

add missing characters for Windows
This commit is contained in:
Zack Guo 2018-01-02 17:47:07 +08:00 committed by GitHub
commit e9a3a6b3d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 2 deletions

View File

@ -12,3 +12,9 @@ const HORIZONTAL_LINE = '-'
const TOP_LEFT = '+'
const BOTTOM_RIGHT = '+'
const BOTTOM_LEFT = '+'
const VERTICAL_LEFT = '+'
const VERTICAL_RIGHT = '+'
const HORIZONTAL_DOWN = '+'
const HORIZONTAL_UP = '+'
const QUOTA_LEFT = '<'
const QUOTA_RIGHT = '>'

View File

@ -231,7 +231,7 @@ func (tp *Tabpane) Buffer() Buffer {
ps = append(ps, pt)
if all <= 0 {
addp := tp.drawPointWithBorder(pt, '<', '«', HORIZONTAL_LINE, HORIZONTAL_LINE)
addp := tp.drawPointWithBorder(pt, '<', QUOTA_LEFT, HORIZONTAL_LINE, HORIZONTAL_LINE)
ps = append(ps, addp...)
}
@ -242,7 +242,7 @@ func (tp *Tabpane) Buffer() Buffer {
}
ps = append(ps, pt)
if all >= 0 {
addp := tp.drawPointWithBorder(pt, '>', '»', HORIZONTAL_LINE, HORIZONTAL_LINE)
addp := tp.drawPointWithBorder(pt, '>', QUOTA_RIGHT, HORIZONTAL_LINE, HORIZONTAL_LINE)
ps = append(ps, addp...)
}
}