Browse Source

fix pixel stretching issue

bwt
Craig Raw 4 years ago
parent
commit
00db59c44f
  1. 2
      src/main/java/com/sparrowwallet/sparrow/control/TitledDescriptionPane.java

2
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;

Loading…
Cancel
Save