Remove black border on MultiEffect shadow
Unsolved
QML and Qt Quick
-
Hey,
using Qt6 QML I want to create neumorphic effect for my UI.
I've write this. but what is that black border on my shadow effect?! how to remove it?Rectangle { x: 500 y: 150 width: 500 height: 200 color: "#E0E5EC" } MultiEffect { source: rec anchors.fill: rec anchors.margins: 5 shadowBlur: 0.5 shadowEnabled: true shadowColor: "white" shadowHorizontalOffset: -15 shadowVerticalOffset: -15 }
-
🤔 No idea?
-
@GreatKahir it appears to be influenced by the shadowBlur property - making the blur smaller reduces this, though I wasn't able to make it disappear completely.
This is on Windows, using Universal style (I also tried Fusion). It's possible it's a bug; you might want to file a bug report on it.