feat(StatusCommunityCard): Added explicit dependency between z properties
Added explicit dependency between z properties with banner, logo, and content card.
This commit is contained in:
parent
2f24b69462
commit
33a3ee3d6e
|
@ -205,7 +205,7 @@ Rectangle {
|
|||
|
||||
// Community logo:
|
||||
Rectangle {
|
||||
z: parent.z + 1
|
||||
z: content.z + 1
|
||||
anchors.top: parent.top
|
||||
anchors.topMargin: 16
|
||||
anchors.left: parent.left
|
||||
|
@ -227,6 +227,8 @@ Rectangle {
|
|||
|
||||
// Content card
|
||||
Rectangle {
|
||||
id: content
|
||||
z: banner.z + 1
|
||||
visible: root.loaded
|
||||
anchors.top: parent.top
|
||||
anchors.topMargin: 40
|
||||
|
|
Loading…
Reference in New Issue