Skip to content

Commit

Permalink
Fix layout of hyperlink
Browse files Browse the repository at this point in the history
Signed-off-by: HenrikJannsen <boilingfrog@gmx.com>
  • Loading branch information
HenrikJannsen committed Jan 30, 2025
1 parent 5ac099b commit 92e7daf
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -894,6 +894,7 @@ private void addFooter() {
Label label = new Label(String.format("[%d]", i + 1));
Hyperlink link = new Hyperlink(messageHyperlinks.get(i));
link.setOnAction(event -> GUIUtil.openWebPageNoPopup(link.getText()));
HBox.setMargin(link, new Insets(-2, 0, 0, 0));
footerBox.getChildren().addAll(new HBox(label, link));
}
}
Expand Down

0 comments on commit 92e7daf

Please sign in to comment.