Fix config screen blur on 1.20.6

This commit is contained in:
James Seibel
2024-06-08 07:19:50 -05:00
parent 6073d8122a
commit c533b2e8ea
@@ -168,10 +168,9 @@ public class ChangelogScreen extends DhScreen
#endif
this.changelogArea.render(matrices, mouseX, mouseY, delta); // Render the changelog
// render order matters, otherwise on 1.20.6+ the blurred background will render on top of the text
super.render(matrices, mouseX, mouseY, delta); // Render the buttons
this.changelogArea.render(matrices, mouseX, mouseY, delta); // Render the changelog
DhDrawCenteredString(matrices, font, title, width / 2, 15, 0xFFFFFF); // Render title
}