Details
-
Bug
-
Resolution: Fixed
-
P2: Important
-
6.8.0
-
None
-
-
711bb5ab2 (dev), d011f0cbe (6.8), 61082ccca (dev), 1070d344a (6.8)
Description
With Qt 6.8.0 MultiEffect with shadowOpacity looks different than it was before on Qt 6.7.3.
Code sample:
import QtQuick import QtQuick.Effects Window { width: 300 height: 300 visible: true component Shadow: MultiEffect { shadowEnabled: true shadowHorizontalOffset:12 shadowVerticalOffset: 12 blurMax: 32 } Rectangle { x: 20 y: 20 width: 100 height: 100 border.width: 1 layer.enabled: true layer.effect: Shadow {} } Rectangle { x: 150 y: 150 width: 100 height: 100 border.width: 2 layer.enabled: true layer.effect: Shadow { shadowOpacity: 0.2 } } }
I.e. on Qt 6.8.0 shadows with a small shadowOpacity value became now almost invisible.
Attachments
Issue Links
- resulted from
-
QTBUG-123396 MultiEffect shadowColor cannot be used for glow
- Closed