diff options
| -rw-r--r-- | Source/WebCore/platform/graphics/qt/GraphicsContextQt.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/WebCore/platform/graphics/qt/GraphicsContextQt.cpp b/Source/WebCore/platform/graphics/qt/GraphicsContextQt.cpp index 17dc4142c..541aae91c 100644 --- a/Source/WebCore/platform/graphics/qt/GraphicsContextQt.cpp +++ b/Source/WebCore/platform/graphics/qt/GraphicsContextQt.cpp @@ -717,6 +717,7 @@ void GraphicsContext::strokePath(const Path& path) QPainterPathStroker pathStroker; pathStroker.setJoinStyle(pen.joinStyle()); pathStroker.setDashOffset(pen.dashOffset()); + pathStroker.setDashPattern(pen.dashPattern()); pathStroker.setMiterLimit(pen.miterLimit()); pathStroker.setCapStyle(pen.capStyle()); pathStroker.setWidth(pen.widthF()); |
