mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-04 21:36:45 +00:00
rename menu item where necessary to indicate wallet accounts are refreshed individually
This commit is contained in:
parent
eceaf40430
commit
dd1976f173
2 changed files with 2 additions and 1 deletions
2
drongo
2
drongo
|
@ -1 +1 @@
|
|||
Subproject commit 5b3712bfe0d9ba34fbdc931de0032a326804a8d8
|
||||
Subproject commit 759ebb975cfe1c3636e2bdcb2c5a340a67be1c2b
|
|
@ -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…
Reference in a new issue