Show XMR subaddress popup during account creation

Additionally show the XMR subaddress popup during account creation, so
that user can look up how subaddresses work and set it up.
This commit is contained in:
Alva Swanson 2025-02-05 19:53:09 +00:00
parent 958661f25b
commit 5e04336c4d
No known key found for this signature in database
GPG key ID: 004760E77F753090

View file

@ -203,6 +203,13 @@ public class XmrForm extends AssetsForm {
setFieldManagement(xmrAccountDelegate.isUsingSubAddresses());
addLimitations(false);
addAccountNameTextFieldWithAutoFillToggleButton();
new Popup()
.headLine(Res.get("account.altcoin.popup.xmr.dataDirWarningHeadline"))
.backgroundInfo(Res.get("account.altcoin.popup.xmr.dataDirWarning"))
.dontShowAgainId("accountSubAddressInfo")
.width(700)
.show();
}
void setFieldManagement(boolean useSubAddresses) {