From 7b047a4b267b8106d043ee71f3c48912d38730cb Mon Sep 17 00:00:00 2001
From: Alexandra Betouni <31625338+alexandraB99@users.noreply.github.com>
Date: Wed, 3 Aug 2022 16:04:52 +0300
Subject: [PATCH] fix(StatusInput): setting default 44px in min/max height
 (#817)

---
 src/StatusQ/Controls/StatusInput.qml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/StatusQ/Controls/StatusInput.qml b/src/StatusQ/Controls/StatusInput.qml
index 1475acee..f0f8f05f 100644
--- a/src/StatusQ/Controls/StatusInput.qml
+++ b/src/StatusQ/Controls/StatusInput.qml
@@ -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.