aboutsummaryrefslogtreecommitdiff
path: root/components/LineEdit.qml
diff options
context:
space:
mode:
authormarcin <z.krzysztoff7@gmail.com>2014-07-19 16:07:40 +0200
committermarcin <z.krzysztoff7@gmail.com>2014-07-19 16:07:40 +0200
commit1eb08fe26aa99efbb92487f210bbcde6f7b2ce12 (patch)
tree41e0300f780e82fc48a88cd5c172ff0eeb3a6a1c /components/LineEdit.qml
parentce7e7fd38ac96b80f560e1a820e09b1c69d791c6 (diff)
downloadmonzero-gui-1eb08fe26aa99efbb92487f210bbcde6f7b2ce12.tar.gz
monzero-gui-1eb08fe26aa99efbb92487f210bbcde6f7b2ce12.tar.xz
monzero-gui-1eb08fe26aa99efbb92487f210bbcde6f7b2ce12.zip
simplified window v1
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
}
}