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