show network in main tab header background when not using mainnet

This commit is contained in:
Craig Raw 2022-10-26 15:54:59 +02:00
parent ebb7d23a05
commit b27709e96f

View file

@ -392,6 +392,7 @@ public class AppController implements Initializable {
});
openTransactionIdItem.disableProperty().bind(onlineProperty().not());
setNetworkLabel();
}
private void setPlatformApplicationMenu() {
@ -419,6 +420,22 @@ public class AppController implements Initializable {
}
}
private void setNetworkLabel() {
if(Network.get() != Network.MAINNET) {
Platform.runLater(() -> {
StackPane tabBackground = (StackPane)tabs.lookup(".tab-header-background");
if(tabBackground != null) {
HBox hBox = new HBox();
Label label = new Label(Network.get().toDisplayString());
label.setPadding(new Insets(0, 10, 0, 0));
hBox.getChildren().add(label);
hBox.setAlignment(Pos.CENTER_RIGHT);
tabBackground.getChildren().add(hBox);
}
});
}
}
public void showIntroduction(ActionEvent event) {
WelcomeDialog welcomeDialog = new WelcomeDialog();
Optional<Mode> optionalMode = welcomeDialog.showAndWait();