Receive: make tracking optional

pull/2/head
stoffu 6 years ago
parent 76a105261e
commit cd4418dc45
No known key found for this signature in database
GPG Key ID: 41DAB8343A9EC012

@ -72,7 +72,7 @@ Rectangle {
}
function update() {
if (!appWindow.currentWallet) {
if (!appWindow.currentWallet || !trackingEnabled.checked) {
setTrackingLineText("-")
return
}
@ -325,6 +325,11 @@ Rectangle {
}
}
CheckBox {
id: trackingEnabled
text: qsTr("Enable") + translationManager.emptyString
}
TextEdit {
id: trackingLine
readOnly: true
@ -407,6 +412,8 @@ Rectangle {
update()
timer.running = true
trackingEnabled.checked = false
}
function onPageClosed() {