Browse Source

set lock all wallet menu command on every wallet lock

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

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

@ -2680,8 +2680,9 @@ public class AppController implements Initializable {
if(selectedWalletForm != null && selectedWalletForm.getMasterWallet().equals(event.getWallet())) {
lockWallet.setDisable(true);
exportWallet.setDisable(true);
lockAllWallets.setDisable(allWalletsLocked(event.getWallet()));
}
lockAllWallets.setDisable(allWalletsLocked(event.getWallet()));
}
@Subscribe

Loading…
Cancel
Save