aboutsummaryrefslogtreecommitdiff
path: root/components/LineEdit.qml
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2018-01-26 14:29:40 -0500
committerluigi1111 <luigi1111w@gmail.com>2018-01-26 14:29:40 -0500
commitef6a6ed6519104f27777f8e508d8eeaf402cff30 (patch)
tree0f34b050893c914520d4f00fee0e3c5a14631332 /components/LineEdit.qml
parentb137f73440ccb1c848e88afbb3515d2ab771a7f4 (diff)
parenta6a7b56d730f9a0be9e7d24b0b589cb69cf5bd56 (diff)
downloadmonzero-gui-ef6a6ed6519104f27777f8e508d8eeaf402cff30.tar.gz
monzero-gui-ef6a6ed6519104f27777f8e508d8eeaf402cff30.tar.xz
monzero-gui-ef6a6ed6519104f27777f8e508d8eeaf402cff30.zip
Merge pull request #977
cee0474 Subaddresses minimal version: supports default account only a6a7b56 ditch payment ID from the Receive page
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"