aboutsummaryrefslogtreecommitdiff
path: root/components/LineEdit.qml
diff options
context:
space:
mode:
authorSander Ferdinand <sa.ferdinand@gmail.com>2018-03-22 05:07:09 +0100
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2018-03-29 23:04:03 +0100
commit625b92318fbe14e06eedb8537a1eabceb4c8a319 (patch)
treeec1d3cbeb631502432d1d18af20c0e28ca956e78 /components/LineEdit.qml
parentb38ee48e594e4cc19299afd4c888f39075688101 (diff)
downloadmonzero-gui-625b92318fbe14e06eedb8537a1eabceb4c8a319.tar.gz
monzero-gui-625b92318fbe14e06eedb8537a1eabceb4c8a319.tar.xz
monzero-gui-625b92318fbe14e06eedb8537a1eabceb4c8a319.zip
Restyled warning box (not connected to daemon)
Diffstat (limited to 'components/LineEdit.qml')
-rw-r--r--components/LineEdit.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/LineEdit.qml b/components/LineEdit.qml
index f5e8a478..9afb5ebc 100644
--- a/components/LineEdit.qml
+++ b/components/LineEdit.qml
@@ -78,9 +78,9 @@ Item {
onTextUpdated: {
// check to remove placeholder text when there is content
if(item.isEmpty()){
- placeholderLabel.visible = true
+ placeholderLabel.visible = true;
} else {
- placeholderLabel.visible = false
+ placeholderLabel.visible = false;
}
}