Fix issue exporting font color

This commit is contained in:
Pieter Sheth-Voss 2015-03-19 22:49:24 -04:00
parent 9b76f6b1f5
commit 4f4f7fc6bc
2 changed files with 2 additions and 2 deletions

View File

@ -226,7 +226,7 @@ if ((typeof 'module' != 'undefined' && typeof require != 'undefined') || (typeo
}
} else if (attributes.color.rgb) { // not both rgb and theme
$font.append(XmlNode('rgb').attr('theme', attributes.color.rgb))
$font.append(XmlNode('color').attr('rgb', attributes.color.rgb))
}
}

View File

@ -5727,7 +5727,7 @@ if ((typeof 'module' != 'undefined' && typeof require != 'undefined') || (typeo
}
} else if (attributes.color.rgb) { // not both rgb and theme
$font.append(XmlNode('rgb').attr('theme', attributes.color.rgb))
$font.append(XmlNode('color').attr('rgb', attributes.color.rgb))
}
}