summaryrefslogtreecommitdiffstats
path: root/src/style.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/style.cpp')
-rw-r--r--src/style.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/style.cpp b/src/style.cpp
index 1f98a50a3..c24818f2a 100644
--- a/src/style.cpp
+++ b/src/style.cpp
@@ -1900,8 +1900,9 @@ sp_css_attr_scale_property_single(SPCSSAttr *css, gchar const *property,
if (w == units) {// nothing converted, non-numeric value
return;
}
- if (only_with_units && (units == NULL || *units == '\0' || *units == '%')) {
+ if (only_with_units && (units == NULL || *units == '\0' || *units == '%' || *units == 'e')) {
// only_with_units, but no units found, so do nothing.
+ // 'e' matches 'em' or 'ex'
return;
}
Inkscape::CSSOStringStream os;