diff options
author | Suneel BS <suneel.b-s@nokia.com> | 2009-05-08 05:39:45 (GMT) |
---|---|---|
committer | Kim Motoyoshi Kalland <kim.kalland@nokia.com> | 2009-07-01 13:19:03 (GMT) |
commit | 7ab895f576b8ef8380838778958fae651a550f79 (patch) | |
tree | 633f3f37bc97e8d18f222f4b0a48ce781d11501a /src/svg/qsvgnode.cpp | |
parent | 1d32cdf73843ba98104fdbc6d5d0a296dbb689b0 (diff) | |
download | Qt-7ab895f576b8ef8380838778958fae651a550f79.zip Qt-7ab895f576b8ef8380838778958fae651a550f79.tar.gz Qt-7ab895f576b8ef8380838778958fae651a550f79.tar.bz2 |
Fixed inheritance of some attributes in SVG.
Fixed inheritance of stroke attributes, the font-size and text-anchor
attribute. Autotest added by Kim.
Reviewed-by: Kim
Diffstat (limited to 'src/svg/qsvgnode.cpp')
-rw-r--r-- | src/svg/qsvgnode.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/svg/qsvgnode.cpp b/src/svg/qsvgnode.cpp index 75c01a9..ce8b3fa 100644 --- a/src/svg/qsvgnode.cpp +++ b/src/svg/qsvgnode.cpp @@ -320,7 +320,7 @@ qreal QSvgNode::strokeWidth() const { QSvgStrokeStyle *stroke = static_cast<QSvgStrokeStyle*>( styleProperty(QSvgStyleProperty::STROKE)); - if (!stroke || stroke->qpen().style() == Qt::NoPen) + if (!stroke || !stroke->strokePresent()) return 0; return stroke->qpen().widthF(); } |