Skip to content

v0.7.2

Latest

Choose a tag to compare

@ajkopinga ajkopinga released this 13 Aug 09:10
· 5 commits to master since this release

Bugfix

This release fixes a bug with font handling. When there are multiple font-family parameters, they should be handled in the order they are given. Before this fix, only the last font-family was used.

Example:

<se:SvgParameter name="font-family">Noto Sans</se:SvgParameter>
<se:SvgParameter name="font-family">Arial</se:SvgParameter>
<se:SvgParameter name="font-family">sans-serif</se:SvgParameter>

Before fix --> fontFamily: 'sans-serif'

After fix  --> fontFamily: '"Noto Sans", Arial, sans-serif'