mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2026-08-09 08:14:43 +00:00
show network in main tab header background when not using mainnet
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user