mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-02 20:36: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) -> {
|
||||
//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…
Reference in a new issue