increase max width of network info on startup

This commit is contained in:
woodser 2025-05-19 09:25:53 -04:00
parent 921d84fd08
commit 49a8af821e
No known key found for this signature in database
GPG key ID: 55A10DD48ADEE5EF

View file

@ -581,7 +581,7 @@ public class MainView extends InitializableView<StackPane, MainViewModel> {
// create P2PNetworkBox
splashP2PNetworkLabel = new AutoTooltipLabel();
splashP2PNetworkLabel.setWrapText(true);
splashP2PNetworkLabel.setMaxWidth(500);
splashP2PNetworkLabel.setMaxWidth(700);
splashP2PNetworkLabel.setTextAlignment(TextAlignment.CENTER);
splashP2PNetworkLabel.getStyleClass().add("sub-info");
splashP2PNetworkLabel.textProperty().bind(model.getP2PNetworkInfo());