aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/items/qquickpathitem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/quick/items/qquickpathitem.cpp')
-rw-r--r--src/quick/items/qquickpathitem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quick/items/qquickpathitem.cpp b/src/quick/items/qquickpathitem.cpp
index 0d2c7a8bbe..720916c900 100644
--- a/src/quick/items/qquickpathitem.cpp
+++ b/src/quick/items/qquickpathitem.cpp
@@ -455,7 +455,7 @@ QSGNode *QQuickPathItemPrivate::createRenderNode()
return node;
const bool hasFill = fillColor != Qt::transparent;
- const bool hasStroke = !qFuzzyIsNull(strokeWidth) && strokeColor != Qt::transparent;
+ const bool hasStroke = strokeWidth >= 0.0f && strokeColor != Qt::transparent;
switch (ri->graphicsApi()) {
#ifndef QT_NO_OPENGL