diff options
| author | Ilya Kitaev <mbg033@gmail.com> | 2016-06-16 17:13:46 +0300 |
|---|---|---|
| committer | Ilya Kitaev <mbg033@gmail.com> | 2016-06-16 17:13:46 +0300 |
| commit | eaf59243b2cbe3d7ea6de1d8dcd18493df9f365d (patch) | |
| tree | 91558ec1f08da11e8eb08e9fce392425673dd44d /components/LineEdit.qml | |
| parent | 3ddd9bed72da0e039f44b64a4cc9fff679dd40ed (diff) | |
| download | monzero-gui-eaf59243b2cbe3d7ea6de1d8dcd18493df9f365d.tar.gz monzero-gui-eaf59243b2cbe3d7ea6de1d8dcd18493df9f365d.tar.xz monzero-gui-eaf59243b2cbe3d7ea6de1d8dcd18493df9f365d.zip | |
basic "send money" functionality implemented in GUI
Diffstat (limited to 'components/LineEdit.qml')
| -rw-r--r-- | components/LineEdit.qml | 3 |
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 + } } |
