We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87e7a87 commit bde8fefCopy full SHA for bde8fef
src/main/java/com/sparrowwallet/sparrow/AppController.java
@@ -107,6 +107,9 @@ public class AppController implements Initializable {
107
@FXML
108
private MenuItem exportWallet;
109
110
+ @FXML
111
+ private MenuItem renameWallet;
112
+
113
114
private MenuItem deleteWallet;
115
@@ -382,6 +385,7 @@ void initializeView() {
382
385
savePSBTBinary.disableProperty().bind(saveTransaction.visibleProperty());
383
386
showPSBT.visibleProperty().bind(saveTransaction.visibleProperty().not());
384
387
exportWallet.setDisable(true);
388
+ renameWallet.disableProperty().bind(exportWallet.disableProperty());
389
deleteWallet.disableProperty().bind(exportWallet.disableProperty());
390
closeTab.setDisable(true);
391
lockWallet.setDisable(true);
0 commit comments