Details
-
Bug
-
Resolution: Invalid
-
Not Evaluated
-
None
-
6.8.1
-
None
Description
From my understanding, MultiEffect is a replacement for ColorOverlay(Qt Graphical Effects in Qt5). but it gives different results:
Column { Text { text: "MultiEffect" } MultiEffect { source: org colorization: 1.0 colorizationColor: "#8F8F8F80" width: org.width height: org.height } Text { text: "ColorOverlay" } ColorOverlay { cached: true color: "#8F8F8F80" source: org width: org.width height: org.height } Text { text: "No effect" } Image { id: org source: "images/btn_type2_dialog_n.png" } }
is this a bug or an expected result?