Remove payment account info popup

This commit is contained in:
BtcContributor 2021-07-01 15:45:40 +02:00 committed by Christoph Atteneder
parent fb639c1e6d
commit 351d26555e
No known key found for this signature in database
GPG key ID: CD5DC1C529CDFD3B

View file

@ -345,13 +345,6 @@ public class FiatAccountsView extends PaymentAccountsView<GridPane, FiatAccounts
.actionButtonText(Res.get("shared.iUnderstand"))
.onAction(() -> doSaveNewAccount(paymentAccount))
.show();
} else if (paymentAccount instanceof CapitualAccount) {
new Popup().information(Res.get("payment.capitual.info", currencyName, currencyName))
.width(900)
.closeButtonText(Res.get("shared.cancel"))
.actionButtonText(Res.get("shared.iUnderstand"))
.onAction(() -> doSaveNewAccount(paymentAccount))
.show();
} else {
doSaveNewAccount(paymentAccount);
}