mirror of
https://github.com/Hopiu/fabric.js.git
synced 2026-03-16 22:10:32 +00:00
fix fontsize parsing (#5258)
This commit is contained in:
parent
7dc02a8718
commit
f7e9177dbe
1 changed files with 3 additions and 2 deletions
|
|
@ -826,8 +826,6 @@
|
|||
if (element.parentNode && fabric.svgValidParentsRegEx.test(element.parentNode.nodeName)) {
|
||||
parentAttributes = fabric.parseAttributes(element.parentNode, attributes, svgUid);
|
||||
}
|
||||
fontSize = (parentAttributes && parentAttributes.fontSize ) ||
|
||||
element.getAttribute('font-size') || fabric.Text.DEFAULT_SVG_FONT_SIZE;
|
||||
|
||||
var ownAttributes = attributes.reduce(function(memo, attr) {
|
||||
value = element.getAttribute(attr);
|
||||
|
|
@ -841,6 +839,9 @@
|
|||
ownAttributes = extend(ownAttributes,
|
||||
extend(getGlobalStylesForElement(element, svgUid), fabric.parseStyleAttribute(element)));
|
||||
|
||||
fontSize = (parentAttributes && parentAttributes.fontSize ) ||
|
||||
ownAttributes['font-size'] || fabric.Text.DEFAULT_SVG_FONT_SIZE;
|
||||
|
||||
var normalizedAttr, normalizedValue, normalizedStyle = {};
|
||||
for (var attr in ownAttributes) {
|
||||
normalizedAttr = normalizeAttr(attr);
|
||||
|
|
|
|||
Loading…
Reference in a new issue