mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-04 13:26:44 +00:00
fix pixel stretching issue
This commit is contained in:
parent
2c27f702bf
commit
00db59c44f
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ public class TitledDescriptionPane extends TitledPane {
|
||||||
|
|
||||||
this.layoutBoundsProperty().addListener((observable, oldValue, newValue) -> {
|
this.layoutBoundsProperty().addListener((observable, oldValue, newValue) -> {
|
||||||
//Hack to force listItem to expand to full available width less border
|
//Hack to force listItem to expand to full available width less border
|
||||||
listItem.setPrefWidth(newValue.getWidth() - 2);
|
listItem.setPrefWidth(newValue.getWidth() - 3);
|
||||||
});
|
});
|
||||||
|
|
||||||
return listItem;
|
return listItem;
|
||||||
|
|
Loading…
Reference in a new issue