rename Text.LineHeight(scale) -> height, since now it's absolute height

This commit is contained in:
faiface 2017-05-07 22:03:56 +02:00
parent c0378a703e
commit 6ce4094935
1 changed files with 2 additions and 2 deletions

View File

@ -143,8 +143,8 @@ func (txt *Text) Color(c color.Color) {
}
}
func (txt *Text) LineHeight(scale float64) {
txt.lineHeight = scale
func (txt *Text) LineHeight(height float64) {
txt.lineHeight = height
}
func (txt *Text) TabWidth(width float64) {