Fix grid cell selection border

Moving the DropShadow broke things in Qt5.15
This commit is contained in:
Luis Ángel San Martín 2022-02-20 18:02:11 +01:00
parent 72670ea6c8
commit f27de78fe1

View File

@ -65,6 +65,17 @@ Rectangle {
NumberAnimation { duration: 90 }
}
DropShadow {
anchors.fill: realCell
horizontalOffset: 0
verticalOffset: 0
radius: 8.0
samples: 17
color: "#FF000000"
source: realCell
visible: (Qt.platform.os === "osx") ? false : true;
}
Rectangle {
id: realCell
@ -252,17 +263,6 @@ Rectangle {
}
}
DropShadow {
anchors.fill: realCell
horizontalOffset: 0
verticalOffset: 0
radius: 8.0
samples: 17
color: "#FF000000"
source: realCell
visible: (Qt.platform.os === "osx") ? false : true;
}
/**/
//cover