aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/controls/fusion/qquickfusionbusyindicator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/imports/controls/fusion/qquickfusionbusyindicator.cpp')
-rw-r--r--src/imports/controls/fusion/qquickfusionbusyindicator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/imports/controls/fusion/qquickfusionbusyindicator.cpp b/src/imports/controls/fusion/qquickfusionbusyindicator.cpp
index 81618191..a9b75d27 100644
--- a/src/imports/controls/fusion/qquickfusionbusyindicator.cpp
+++ b/src/imports/controls/fusion/qquickfusionbusyindicator.cpp
@@ -82,7 +82,7 @@ void QQuickFusionBusyIndicator::paint(QPainter *painter)
const qreal sz = qMin(w, h);
const qreal dx = (w - sz) / 2;
const qreal dy = (h - sz) / 2;
- const int hpw = qRound(qMax(1.0, sz / 14)) & -1;
+ const int hpw = qRound(qMax(qreal(1), sz / 14)) & -1;
const int pw = 2 * hpw;
const QRectF bounds(dx + hpw, dy + hpw, sz - pw - 1, sz - pw - 1);