From 6bc15e21ba143b11e10d70df9c6978def4800d6c Mon Sep 17 00:00:00 2001 From: Sander van Grieken Date: Thu, 24 Oct 2024 16:17:05 +0200 Subject: [PATCH] qml: fix display validation error in WCHaveSeed --- electrum/gui/qml/components/wizard/WCHaveSeed.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/electrum/gui/qml/components/wizard/WCHaveSeed.qml b/electrum/gui/qml/components/wizard/WCHaveSeed.qml index 68e2ff768..4afc638a7 100644 --- a/electrum/gui/qml/components/wizard/WCHaveSeed.qml +++ b/electrum/gui/qml/components/wizard/WCHaveSeed.qml @@ -87,10 +87,10 @@ WizardComponent { if (seed_variant_cb.currentValue == 'electrum') { apply() if (wiz.hasDuplicateMasterKeys(wizard_data)) { - validationtext.text = qsTr('Error: duplicate master public key') + _validationMessage = qsTr('Error: duplicate master public key') return } else if (wiz.hasHeterogeneousMasterKeys(wizard_data)) { - validationtext.text = qsTr('Error: master public key types do not match') + _validationMessage = qsTr('Error: master public key types do not match') return } else { _seedValid = true