Details
-
Bug
-
Resolution: Fixed
-
P2: Important
-
None
-
6.8.0
Description
To reproduce:
- create new project
- add BlurHelper
- add InnerShadow
- export
- use the component somewhere, for example:
Rectangle {
id: rect
anchors.fill: parent
radius: 30
color: "light grey"
}
Effect01 {
source: rect
anchors.fill: rect
innerShadowBlurAmount: 0.5
innerShadowHorizontalOffset: 30
innerShadowVerticalOffset: 30
innerShadowColor:Qt.rgba(0,1,0,1)
innerShadowSpread: 1.0
}
This does not seem to be doing much of anything in an application like this. If it is used as a layer effect, the entire layer is filled with the shadow color no matter what parameters are used.