Browse Source

rename menu item where necessary to indicate wallet accounts are refreshed individually

terminal
Craig Raw 3 years ago
parent
commit
dd1976f173
  1. 2
      drongo
  2. 1
      src/main/java/com/sparrowwallet/sparrow/AppController.java

2
drongo

@ -1 +1 @@
Subproject commit 5b3712bfe0d9ba34fbdc931de0032a326804a8d8
Subproject commit 759ebb975cfe1c3636e2bdcb2c5a340a67be1c2b

1
src/main/java/com/sparrowwallet/sparrow/AppController.java

@ -2013,6 +2013,7 @@ public class AppController implements Initializable {
saveTransaction.setDisable(true);
lockWallet.setDisable(walletTabData.getWalletForm().lockedProperty().get());
exportWallet.setDisable(walletTabData.getWallet() == null || !walletTabData.getWallet().isValid() || walletTabData.getWalletForm().isLocked());
refreshWallet.setText(walletTabData.getWallet() == null || walletTabData.getWalletForm().getMasterWallet().getChildWallets().stream().allMatch(Wallet::isNested) ? "Refresh Wallet" : "Refresh Wallet Account");
showLoadingLog.setDisable(false);
showTxHex.setDisable(true);
showPayNym.setDisable(exportWallet.isDisable() || !walletTabData.getWallet().hasPaymentCode());

Loading…
Cancel
Save