aboutsummaryrefslogtreecommitdiff
path: root/components/LineEdit.qml
diff options
context:
space:
mode:
authorkenshi84 <kenshi84@protonmail.ch>2017-07-04 12:34:09 +0900
committerkenshi84 <kenshi84@protonmail.ch>2018-01-13 14:37:07 +0900
commitcee0474e375a70d55200209bfa2387fd5242dd8f (patch)
tree66c029e1bda47e02c01de77180b0579a06fc7bd8 /components/LineEdit.qml
parent3b069ec04908f76b8244a96124ce9619c0b0300d (diff)
downloadmonzero-gui-cee0474e375a70d55200209bfa2387fd5242dd8f.tar.gz
monzero-gui-cee0474e375a70d55200209bfa2387fd5242dd8f.tar.xz
monzero-gui-cee0474e375a70d55200209bfa2387fd5242dd8f.zip
Subaddresses minimal version: supports default account only
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 f7cb0612..4e34f241 100644
--- a/components/LineEdit.qml
+++ b/components/LineEdit.qml
@@ -37,6 +37,7 @@ Item {
property alias cursorPosition: input.cursorPosition
property alias echoMode: input.echoMode
property int fontSize: 18 * scaleRatio
+ property bool showBorder: true
property bool error: false
signal editingFinished()
signal accepted();
@@ -52,6 +53,7 @@ Item {
}
Rectangle {
+ visible: showBorder
anchors.fill: parent
anchors.bottomMargin: 1 * scaleRatio
color: "#DBDBDB"