Small fixes [stage]

This commit is contained in:
crschnick
2023-06-05 12:46:57 +00:00
parent 271e2c8013
commit b86671d971
5 changed files with 13 additions and 4 deletions

View File

@@ -27,7 +27,7 @@ public class ErrorOverlayComp extends SimpleComp {
var comp = Comp.of(() -> {
var l = new TextArea();
l.textProperty().bind(text);
l.setWrapText(true);
l.setWrapText(false);
l.getStyleClass().add("error-overlay-comp");
l.setEditable(false);
return l;

View File

@@ -29,7 +29,6 @@ public class StoreEntryFlatMiniSectionComp extends SimpleComp {
ALL.clear();
var depth = 0;
for (StoreSection v : topLevel.getChildren()) {
System.out.println(v.getWrapper().getEntry().getName() + " " + v.getChildren().size());
add(depth, v);
}
});