aboutsummaryrefslogtreecommitdiff
path: root/text.go
diff options
context:
space:
mode:
Diffstat (limited to 'text.go')
-rw-r--r--text.go7
1 files changed, 2 insertions, 5 deletions
diff --git a/text.go b/text.go
index ff21e18..c29e222 100644
--- a/text.go
+++ b/text.go
@@ -37,11 +37,8 @@ func (f Font) putchar(c *bufio.Writer, s string, scale Unit, off *Point) {
}
off.Offset(c)
for _, p := range gl.S {
- if scale > 10 {
- p.Scale(scale).Curve(c, 0)
- } else {
- p.Scale(scale).Line(c)
- }
+ p.Scale(scale).Line(c)
+ //p.Scale(scale).Curve(c, 0)
}
off.Y += gl.W * scale
} else if ch == '\t' {