fix blank page when redirected to national currencies tab
This commit is contained in:
parent
003fac3da4
commit
83c5d505c3
@ -357,7 +357,6 @@ public class MainView extends InitializableView<StackPane, MainViewModel> {
|
|||||||
settingsButtonWithBadge.getStyleClass().add("new");
|
settingsButtonWithBadge.getStyleClass().add("new");
|
||||||
|
|
||||||
navigation.addListener((viewPath, data) -> {
|
navigation.addListener((viewPath, data) -> {
|
||||||
UserThread.execute(() -> {
|
|
||||||
if (viewPath.size() != 2 || viewPath.indexOf(MainView.class) != 0)
|
if (viewPath.size() != 2 || viewPath.indexOf(MainView.class) != 0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
@ -376,7 +375,6 @@ public class MainView extends InitializableView<StackPane, MainViewModel> {
|
|||||||
navigation.navigateTo(MainView.class, MarketView.class, OfferBookChartView.class);
|
navigation.navigateTo(MainView.class, MarketView.class, OfferBookChartView.class);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
|
||||||
|
|
||||||
VBox splashScreen = createSplashScreen();
|
VBox splashScreen = createSplashScreen();
|
||||||
|
|
||||||
|
@ -268,7 +268,7 @@ public class MainViewModel implements ViewModel, HavenoSetup.HavenoSetupListener
|
|||||||
setupDevDummyPaymentAccounts();
|
setupDevDummyPaymentAccounts();
|
||||||
}
|
}
|
||||||
|
|
||||||
getShowAppScreen().set(true);
|
UserThread.execute(() -> getShowAppScreen().set(true));
|
||||||
|
|
||||||
// We only show the popup if the user has already set up any fiat account. For new users it is not a rule
|
// We only show the popup if the user has already set up any fiat account. For new users it is not a rule
|
||||||
// change and for altcoins its not relevant.
|
// change and for altcoins its not relevant.
|
||||||
|
Loading…
Reference in New Issue
Block a user