fix(StatusInput): add implicitHeight
It makes it work with layouts correctly.
This commit is contained in:
parent
c6b2a02e0a
commit
a0246f6a7c
|
@ -33,7 +33,7 @@ import StatusQ.Controls.Validators 0.1
|
|||
Item {
|
||||
id: root
|
||||
implicitWidth: 480
|
||||
height: (label.visible ?
|
||||
implicitHeight: (label.visible ?
|
||||
label.anchors.topMargin +
|
||||
label.height :
|
||||
charLimitLabel.visible ?
|
||||
|
@ -47,6 +47,9 @@ Item {
|
|||
errorMessage.height :
|
||||
0) + 8
|
||||
|
||||
height: implicitHeight
|
||||
width: implicitWidth
|
||||
|
||||
property alias input: statusBaseInput
|
||||
property alias valid: statusBaseInput.valid
|
||||
property alias pending: statusBaseInput.pending
|
||||
|
|
Loading…
Reference in New Issue