From 00db59c44f33f83a78f855360089104f79a57ba4 Mon Sep 17 00:00:00 2001 From: Craig Raw Date: Fri, 28 Aug 2020 09:49:26 +0200 Subject: [PATCH] fix pixel stretching issue --- .../sparrowwallet/sparrow/control/TitledDescriptionPane.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/sparrowwallet/sparrow/control/TitledDescriptionPane.java b/src/main/java/com/sparrowwallet/sparrow/control/TitledDescriptionPane.java index 349132d5..0507243f 100644 --- a/src/main/java/com/sparrowwallet/sparrow/control/TitledDescriptionPane.java +++ b/src/main/java/com/sparrowwallet/sparrow/control/TitledDescriptionPane.java @@ -88,7 +88,7 @@ public class TitledDescriptionPane extends TitledPane { this.layoutBoundsProperty().addListener((observable, oldValue, newValue) -> { //Hack to force listItem to expand to full available width less border - listItem.setPrefWidth(newValue.getWidth() - 2); + listItem.setPrefWidth(newValue.getWidth() - 3); }); return listItem;