diff options
author | Christopher Swenson <chris@caswenson.com> | 2015-07-09 18:11:33 -0700 |
---|---|---|
committer | Christopher Swenson <chris@caswenson.com> | 2015-07-09 18:11:33 -0700 |
commit | 59ed89ada8a456da8ea556e78f3f926a61f7b083 (patch) | |
tree | d3bb5885b67e4f9a811fb445924e4b1c4aa28eeb | |
parent | 6a08402045a893587f9df5147de66dff238e8bba (diff) |
Fix SetFontUnitSize name so that we can build
-rw-r--r-- | fpdf.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1543,7 +1543,7 @@ func (f *Fpdf) SetFontSize(size float64) { // SetFontUnitSize defines the size of the current font. Size is specified in // the unit of measure specified in New(). See also SetFontSize(). -func (f *Fpdf) SetFontSize(size float64) { +func (f *Fpdf) SetFontUnitSize(size float64) { if f.fontSize == size { return } |