mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-02 12:26:45 +00:00
delay show password dialog until initial app window open has completed
This commit is contained in:
parent
e131f645f6
commit
31f287125f
1 changed files with 19 additions and 16 deletions
|
@ -89,7 +89,9 @@ public class SparrowDesktop extends Application {
|
|||
|
||||
AppController appController = AppServices.newAppWindow(stage);
|
||||
|
||||
if(createNewWallet) {
|
||||
final boolean showNewWallet = createNewWallet;
|
||||
javafx.application.Platform.runLater(() -> {
|
||||
if(showNewWallet) {
|
||||
appController.newWallet(null);
|
||||
}
|
||||
|
||||
|
@ -111,6 +113,7 @@ public class SparrowDesktop extends Application {
|
|||
AppServices.openFileUriArgumentsAfterWalletLoading(stage);
|
||||
|
||||
AppServices.get().start();
|
||||
});
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue