mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-05 05:46:44 +00:00
fix no recent wallets issue
This commit is contained in:
parent
b2d85b6c78
commit
78afc5e4d5
1 changed files with 12 additions and 10 deletions
|
@ -27,6 +27,7 @@ public class MasterActionListBox extends ActionListBox {
|
||||||
addItem("Wallets", () -> {
|
addItem("Wallets", () -> {
|
||||||
ActionListDialogBuilder builder = new ActionListDialogBuilder();
|
ActionListDialogBuilder builder = new ActionListDialogBuilder();
|
||||||
builder.setTitle("Wallets");
|
builder.setTitle("Wallets");
|
||||||
|
if(Config.get().getRecentWalletFiles() != null) {
|
||||||
for(int i = 0; i < Config.get().getRecentWalletFiles().size() && i < MAX_RECENT_WALLETS; i++) {
|
for(int i = 0; i < Config.get().getRecentWalletFiles().size() && i < MAX_RECENT_WALLETS; i++) {
|
||||||
File recentWalletFile = Config.get().getRecentWalletFiles().get(i);
|
File recentWalletFile = Config.get().getRecentWalletFiles().get(i);
|
||||||
Storage storage = new Storage(recentWalletFile);
|
Storage storage = new Storage(recentWalletFile);
|
||||||
|
@ -40,6 +41,7 @@ public class MasterActionListBox extends ActionListBox {
|
||||||
builder.addAction(storage.getWalletName(null), new LoadWallet(storage));
|
builder.addAction(storage.getWalletName(null), new LoadWallet(storage));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
builder.addAction("Open Wallet...", () -> {
|
builder.addAction("Open Wallet...", () -> {
|
||||||
FileDialogBuilder openBuilder = new FileDialogBuilder().setTitle("Open Wallet");
|
FileDialogBuilder openBuilder = new FileDialogBuilder().setTitle("Open Wallet");
|
||||||
openBuilder.setShowHiddenDirectories(true);
|
openBuilder.setShowHiddenDirectories(true);
|
||||||
|
|
Loading…
Reference in a new issue