transfer: fix non-existent property cursorPosition

This commit is contained in:
mmbyday 2019-02-01 17:43:40 -08:00
parent c7f3deb5cc
commit 57ade0406e

View file

@ -265,7 +265,6 @@ Rectangle {
if (parts[0] === "true") { if (parts[0] === "true") {
if (address_ok) { if (address_ok) {
addressLine.text = parts[1] addressLine.text = parts[1]
addressLine.cursorPosition = 0
} }
else else
oa_message(qsTr("No valid address found at this OpenAlias address")) oa_message(qsTr("No valid address found at this OpenAlias address"))
@ -273,7 +272,6 @@ Rectangle {
else if (parts[0] === "false") { else if (parts[0] === "false") {
if (address_ok) { if (address_ok) {
addressLine.text = parts[1] addressLine.text = parts[1]
addressLine.cursorPosition = 0
oa_message(qsTr("Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed")) oa_message(qsTr("Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed"))
} }
else else