aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2019-07-09 03:07:30 +0200
committerEdward Welbourne <edward.welbourne@qt.io>2019-07-11 13:52:27 +0200
commit3b3b3f85ddd472bdae168f210e62dc2868997aae (patch)
tree9c213c3df74ee1ab9c6ddc4db8c6018b0a6bdd15
parent48f4de2d3bda3b0b0486b5c639cf196ee2fc26b7 (diff)
parentc4227f453c06d969d95da2affb971e8a1cae8170 (diff)
Merge "Merge remote-tracking branch 'origin/5.12' into 5.13"
-rw-r--r--src/effects/private/DropShadowBase.qml5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/effects/private/DropShadowBase.qml b/src/effects/private/DropShadowBase.qml
index 7e80e47..e9927ea 100644
--- a/src/effects/private/DropShadowBase.qml
+++ b/src/effects/private/DropShadowBase.qml
@@ -38,6 +38,7 @@
****************************************************************************/
import QtQuick 2.12
+import QtQuick.Window 2.12
import QtGraphicalEffects.private 1.12
import QtGraphicalEffects 1.12
@@ -61,8 +62,8 @@ Item {
x: Math.round(horizontalOffset)
y: Math.round(verticalOffset)
source: root.source
- radius: root.radius
- samples: root.samples
+ radius: root.radius * Screen.devicePixelRatio
+ samples: root.samples * Screen.devicePixelRatio
_thickness: root.spread
transparentBorder: root.transparentBorder