@@ -95,16 +95,19 @@ Page {
9595 visible: walletController .isWalletLoaded
9696 NavigationTab {
9797 id: activityTabButton
98+ objectName: " walletActivityTab"
9899 text: qsTr (" Activity" )
99100 property int index: 0
100101 ButtonGroup .group : navigationTabs
101102 }
102103 NavigationTab {
104+ objectName: " walletSendTab"
103105 text: qsTr (" Send" )
104106 property int index: 1
105107 ButtonGroup .group : navigationTabs
106108 }
107109 NavigationTab {
110+ objectName: " walletReceiveTab"
108111 text: qsTr (" Receive" )
109112 property int index: 2
110113 ButtonGroup .group : navigationTabs
@@ -198,6 +201,10 @@ Page {
198201 id: migrationRequiredPopup
199202 parent: Overlay .overlay
200203 width: Math .min (420 , root .width - 40 )
204+ popupObjectName: " walletMigrationPopup"
205+ errorTextObjectName: " walletMigrationErrorText"
206+ cancelButtonObjectName: " walletMigrationCancelButton"
207+ confirmButtonObjectName: " walletMigrationConfirmButton"
201208 descriptionText: qsTr (" This wallet uses a legacy format and needs to be updated before it can be opened." )
202209 busy: walletController .walletMigrationInProgress
203210 onConfirmed: {
@@ -211,6 +218,11 @@ Page {
211218 id: migrationPassphrasePopup
212219 parent: Overlay .overlay
213220 width: Math .min (420 , root .width - 40 )
221+ popupObjectName: " walletMigrationPassphrasePopup"
222+ passphraseFieldObjectName: " walletMigrationPassphraseField"
223+ errorTextObjectName: " walletMigrationPassphraseErrorText"
224+ cancelButtonObjectName: " walletMigrationPassphraseCancelButton"
225+ confirmButtonObjectName: " walletMigrationPassphraseConfirmButton"
214226 titleText: qsTr (" Enter wallet password" )
215227 descriptionText: qsTr (" Enter the wallet password to complete the legacy wallet update." )
216228 confirmText: qsTr (" Unlock and update" )
0 commit comments