fix(StatusInput): setting default 44px in min/max height (#817)

This commit is contained in:
Alexandra Betouni 2022-08-03 16:04:52 +03:00 committed by GitHub
parent cff836280f
commit 7b047a4b26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -132,14 +132,14 @@ Item {
property alias bottomPadding: statusBaseInput.bottomPadding
/*!
\qmlproperty real StatusInput::minimumHeight
This property sets the minimum height.
This property sets the minimum height. Default value is 44px.
*/
property real minimumHeight: 0
property real minimumHeight: 44
/*!
\qmlproperty alias StatusInput::maximumHeight
This property sets the maximum height.
This property sets the maximum height. Default value is 44px.
*/
property real maximumHeight: 0
property real maximumHeight: 44
/*!
\qmlproperty list StatusBaseInput::validators
This property sets the list of validators to be considered.