From b163a32544893e91fd0613a49ed09b289e833cf0 Mon Sep 17 00:00:00 2001 From: Dimitri Sokolyuk Date: Tue, 26 May 2015 01:25:48 +0200 Subject: Remove auto Curve --- text.go | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'text.go') 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' { -- cgit v1.2.3