Replace drop shadow on the Flow Info view too

This commit is contained in:
Luis Ángel San Martín
2024-12-29 19:09:59 +01:00
parent dd82f1ecb4
commit 3ae3628c1f
4 changed files with 28 additions and 20 deletions

View File

@ -118,16 +118,20 @@ Rectangle {
running: coverElement.status === Image.Loading
}
DropShadow {
anchors.fill: coverElement
horizontalOffset: 0
verticalOffset: 0
radius: 6
samples: 17
color: "#BB000000"
source: coverElement
visible: showDropShadow;
BorderImage {
anchors {
top: coverElement.top
left: coverElement.left
right: coverElement.right
bottom: coverElement.bottom
margins: -6
}
border { left: 10; top: 10; right: 10; bottom: 10 }
horizontalTileMode: BorderImage.Stretch
verticalTileMode: BorderImage.Stretch
source: "prerendered_cover_shadow.png"
visible: showDropShadow
}
Image {
id: coverElement