fix(StatusModalHeader): ensure header has enough height for children
Closes #185
This commit is contained in:
parent
3d0688b778
commit
75b2f508b3
|
@ -18,7 +18,7 @@ Rectangle {
|
||||||
signal editButtonClicked
|
signal editButtonClicked
|
||||||
signal close
|
signal close
|
||||||
|
|
||||||
implicitHeight: imageWithTitle.implicitHeight + 32
|
implicitHeight: Math.max(closeButton.height, imageWithTitle.implicitHeight) + 32
|
||||||
implicitWidth: 480
|
implicitWidth: 480
|
||||||
|
|
||||||
radius: 16
|
radius: 16
|
||||||
|
|
Loading…
Reference in New Issue