mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-16 15:58:11 +00:00
wizard: default account name on recover page
This commit is contained in:
parent
21414d75a4
commit
097449079d
2 changed files with 2 additions and 3 deletions
|
@ -70,7 +70,6 @@ Rectangle {
|
|||
}
|
||||
|
||||
function switchPage(next) {
|
||||
console.log("hepp")
|
||||
// save settings for current page;
|
||||
if (next && typeof pages[currentPage].onPageClosed !== 'undefined') {
|
||||
if (pages[currentPage].onPageClosed(settings) !== true) {
|
||||
|
@ -79,7 +78,7 @@ Rectangle {
|
|||
};
|
||||
|
||||
}
|
||||
print ("switchpage: currentPage: ", currentPage);
|
||||
console.log("switchpage: currentPage: ", currentPage);
|
||||
|
||||
if (currentPage > 0 || currentPage < pages.length - 1) {
|
||||
pages[currentPage].opacity = 0
|
||||
|
|
|
@ -76,7 +76,7 @@ Item {
|
|||
|
||||
WizardManageWalletUI {
|
||||
id: uiItem
|
||||
accountNameText: qsTr("My account name") + translationManager.emptyString
|
||||
accountNameText: defaultAccountName
|
||||
titleText: qsTr("We're ready to recover your account") + translationManager.emptyString
|
||||
wordsTextTitle: qsTr("Please enter your 25 word private key") + translationManager.emptyString
|
||||
wordsTextItem.clipboardButtonVisible: false
|
||||
|
|
Loading…
Reference in a new issue