Skip to content

Commit

Permalink
fix[OrganizationPageView]: fix picture quality on Organization logo
Browse files Browse the repository at this point in the history
  • Loading branch information
Fredrik Marjoni committed Apr 21, 2026
1 parent 4927aca commit fe3e366
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ private StackPane createImageContainer() {
// Load image in background thread to avoid blocking UI
new Thread(() -> {
try {
Image image = new Image(org.logoUrl(), 120, 120, true, true);
Image image = new Image(org.logoUrl(), 350, 350, true, true);
Platform.runLater(() -> {
ImageView logo = new ImageView(image);
logo.setId("logo");
Expand Down

0 comments on commit fe3e366

Please sign in to comment.