Skip to content

Commit 00c40e8

Browse files
committed
fix lines having too much space
1 parent 5f03fe5 commit 00c40e8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/gregtech/api/metatileentity/multiblock/ui/MultiblockUIFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ protected Widget<?> createScreen(PanelSyncManager syncManager) {
360360
.debugName("display_text")
361361
.sizeRel(1f)
362362
.alignment(Alignment.TopLeft)
363-
.margin(4, 4)
363+
.margin(4)
364364
.autoUpdate(true)
365365
.textBuilder(display::build));
366366
}

src/main/java/gregtech/api/metatileentity/multiblock/ui/Operation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ static Operation add(IDrawable drawable) {
2020
}
2121

2222
static Operation addLineSpace(IDrawable drawable) {
23-
return addLine(drawable).spaceLine(2);
23+
return addLine(drawable).spaceLine(1);
2424
}
2525

2626
@Override

0 commit comments

Comments
 (0)