mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-03-01 14:30:35 +00:00
move version to last on password and startup screen
This commit is contained in:
parent
7fba0faac1
commit
e1b3cdce28
2 changed files with 4 additions and 4 deletions
desktop/src/main/java/haveno/desktop
|
@ -216,7 +216,7 @@ public class HavenoAppMain extends HavenoExecutable {
|
||||||
|
|
||||||
// Set the dialog content
|
// Set the dialog content
|
||||||
VBox vbox = new VBox(10);
|
VBox vbox = new VBox(10);
|
||||||
vbox.getChildren().addAll(new ImageView(ImageUtil.getImageByPath("logo_splash.png")), versionField, passwordField, errorMessageField);
|
vbox.getChildren().addAll(new ImageView(ImageUtil.getImageByPath("logo_splash.png")), passwordField, errorMessageField, versionField);
|
||||||
vbox.setAlignment(Pos.TOP_CENTER);
|
vbox.setAlignment(Pos.TOP_CENTER);
|
||||||
getDialogPane().setContent(vbox);
|
getDialogPane().setContent(vbox);
|
||||||
|
|
||||||
|
|
|
@ -511,8 +511,6 @@ public class MainView extends InitializableView<StackPane, MainViewModel> {
|
||||||
ImageView logo = new ImageView();
|
ImageView logo = new ImageView();
|
||||||
logo.setId(Config.baseCurrencyNetwork() == BaseCurrencyNetwork.XMR_MAINNET ? "image-splash-logo" : "image-splash-testnet-logo");
|
logo.setId(Config.baseCurrencyNetwork() == BaseCurrencyNetwork.XMR_MAINNET ? "image-splash-logo" : "image-splash-testnet-logo");
|
||||||
|
|
||||||
Label versionLabel = new Label("v" + Version.VERSION);
|
|
||||||
|
|
||||||
// createBitcoinInfoBox
|
// createBitcoinInfoBox
|
||||||
xmrSplashInfo = new AutoTooltipLabel();
|
xmrSplashInfo = new AutoTooltipLabel();
|
||||||
xmrSplashInfo.textProperty().bind(model.getXmrInfo());
|
xmrSplashInfo.textProperty().bind(model.getXmrInfo());
|
||||||
|
@ -624,7 +622,9 @@ public class MainView extends InitializableView<StackPane, MainViewModel> {
|
||||||
splashP2PNetworkBox.setPrefHeight(40);
|
splashP2PNetworkBox.setPrefHeight(40);
|
||||||
splashP2PNetworkBox.getChildren().addAll(splashP2PNetworkLabel, splashP2PNetworkBusyAnimation, splashP2PNetworkIcon, showTorNetworkSettingsButton);
|
splashP2PNetworkBox.getChildren().addAll(splashP2PNetworkLabel, splashP2PNetworkBusyAnimation, splashP2PNetworkIcon, showTorNetworkSettingsButton);
|
||||||
|
|
||||||
vBox.getChildren().addAll(logo, versionLabel, blockchainSyncBox, xmrSyncIndicator, splashP2PNetworkBox);
|
Label versionLabel = new Label("v" + Version.VERSION);
|
||||||
|
|
||||||
|
vBox.getChildren().addAll(logo, blockchainSyncBox, xmrSyncIndicator, splashP2PNetworkBox, versionLabel);
|
||||||
return vBox;
|
return vBox;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue