Skip to content

Commit 0476cdc

Browse files
committed
Fix option info screen rendering description behind blur
1 parent 23bbf7b commit 0476cdc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

common/src/main/java/org/embeddedt/modernfix/screen/ModernFixOptionInfoScreen.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,8 @@ private void drawMultilineString(GuiGraphics guiGraphics, Font fr, Component str
4141

4242
@Override
4343
public void render(GuiGraphics guiGraphics, int mouseX, int mouseY, float partialTicks) {
44-
this.renderBackground(guiGraphics, mouseX, mouseY, partialTicks);
44+
super.render(guiGraphics, mouseX, mouseY, partialTicks);
4545
guiGraphics.drawCenteredString(this.font, this.title, this.width / 2, 8, 16777215);
4646
this.drawMultilineString(guiGraphics, this.minecraft.font, description, 10, 50);
47-
super.render(guiGraphics, mouseX, mouseY, partialTicks);
4847
}
4948
}

0 commit comments

Comments
 (0)