From 205a7284a93ef933dfe42896d1043522e3922aa4 Mon Sep 17 00:00:00 2001 From: Will Charczuk Date: Thu, 14 Jul 2016 19:45:23 -0700 Subject: [PATCH] missed font size --- style.go | 1 + 1 file changed, 1 insertion(+) diff --git a/style.go b/style.go index ed2889e..c446f80 100644 --- a/style.go +++ b/style.go @@ -123,6 +123,7 @@ func (s Style) WithDefaultsFrom(defaults Style) (final Style) { final.StrokeDashArray = s.GetStrokeDashArray(defaults.StrokeDashArray) final.FillColor = s.GetFillColor(defaults.FillColor) final.FontColor = s.GetFontColor(defaults.FontColor) + final.FontSize = s.GetFontSize(defaults.FontSize) final.Font = s.GetFont(defaults.Font) final.Padding = s.GetPadding(defaults.Padding) return