summaryrefslogtreecommitdiff
path: root/src/controls/Styles/Base/HandleStyleHelper.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/controls/Styles/Base/HandleStyleHelper.qml')
-rw-r--r--src/controls/Styles/Base/HandleStyleHelper.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/controls/Styles/Base/HandleStyleHelper.qml b/src/controls/Styles/Base/HandleStyleHelper.qml
index 30e62d79..78059bfe 100644
--- a/src/controls/Styles/Base/HandleStyleHelper.qml
+++ b/src/controls/Styles/Base/HandleStyleHelper.qml
@@ -67,8 +67,8 @@ QtObject {
}
ctx.beginPath();
- var gradient = ctx.createRadialGradient(handleX, handleY, handleWidth / 2,
- handleX, handleY, handleWidth);
+ var gradient = ctx.createRadialGradient(handleX, handleY, 0,
+ handleX, handleY, handleWidth * 1.5);
gradient.addColorStop(0, handleColorTop);
gradient.addColorStop(handleColorBottomStop, handleColorBottom);
ctx.ellipse(handleX, handleY, handleWidth, handleHeight);