Disable the keyboard shortcut for saving PSBT binary when its parent menu is disabled

This commit is contained in:
Haakon Nilsen
2021-05-26 18:54:20 +02:00
parent 8a77f22158
commit 447e2ab264
2 changed files with 5 additions and 1 deletions
@@ -87,6 +87,9 @@ public class AppController implements Initializable {
@FXML
private Menu savePSBT;
@FXML
private MenuItem savePSBTBinary;
@FXML
private MenuItem exportWallet;
@@ -267,6 +270,7 @@ public class AppController implements Initializable {
showLoadingLog.setSelected(Config.get().isShowLoadingLog());
showUtxosChart.setSelected(Config.get().isShowUtxosChart());
savePSBT.visibleProperty().bind(saveTransaction.visibleProperty().not());
savePSBTBinary.disableProperty().bind(saveTransaction.visibleProperty());
exportWallet.setDisable(true);
refreshWallet.disableProperty().bind(Bindings.or(exportWallet.disableProperty(), Bindings.or(serverToggle.disableProperty(), AppServices.onlineProperty().not())));
sendToMany.disableProperty().bind(exportWallet.disableProperty());