Skip to content

Commit aee0e4e

Browse files
committed
change height
1 parent efd21cd commit aee0e4e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/gregtechceu/gtceu/common/machine/multiblock/electric/PowerSubstationMachine.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ public boolean supportsBigIntEnergyValues() {
395395
public ModularPanel buildUI(PosGuiData data, PanelSyncManager syncManager, UISettings settings) {
396396
// GTCEu.LOGGER.info(" " + netInLastSec + " " + netOutLastSec + " " + inputPerSec + " " + outputPerSec);
397397
return new ModularPanel(getDefinition().getName())
398-
.width(200)
398+
.size(200, 172)
399399
.child(GTMuiWidgets.createTitleBar(getDefinition(), 176))
400400
.bindPlayerInventory()
401401
.child(Flow.row()
@@ -406,7 +406,7 @@ public ModularPanel buildUI(PosGuiData data, PanelSyncManager syncManager, UISet
406406
.crossAxisAlignment(Alignment.CrossAxis.START)
407407
.padding(5)
408408
.background(GTGuiTextures.DISPLAY)
409-
.height(75)
409+
.height(80)
410410
.child(new TextWidget<>(IKey.dynamic(() -> {
411411
List<Component> text = new ArrayList<>();
412412
addDisplayText(text);

0 commit comments

Comments
 (0)