aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
Diffstat (limited to 'components')
-rw-r--r--components/LineEdit.qml3
1 files changed, 3 insertions, 0 deletions
diff --git a/components/LineEdit.qml b/components/LineEdit.qml
index 6994b75f..37c2390d 100644
--- a/components/LineEdit.qml
+++ b/components/LineEdit.qml
@@ -31,7 +31,9 @@ import QtQuick 2.0
Item {
property alias placeholderText: input.placeholderText
property alias text: input.text
+ property alias validator: input.validator
property int fontSize: 18
+
height: 37
Rectangle {
@@ -54,5 +56,6 @@ Item {
anchors.leftMargin: 4
anchors.rightMargin: 4
font.pixelSize: parent.fontSize
+
}
}