From 2bf125b7acb6de4c0fe60f78dedf880664b98449 Mon Sep 17 00:00:00 2001 From: James Seibel Date: Wed, 8 Apr 2026 17:27:33 -0500 Subject: [PATCH] fix config button missing background --- .../common/wrappers/gui/TexturedButtonWidget.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/common/src/main/java/com/seibel/distanthorizons/common/wrappers/gui/TexturedButtonWidget.java b/common/src/main/java/com/seibel/distanthorizons/common/wrappers/gui/TexturedButtonWidget.java index 436daa73f..f51f5fe3d 100644 --- a/common/src/main/java/com/seibel/distanthorizons/common/wrappers/gui/TexturedButtonWidget.java +++ b/common/src/main/java/com/seibel/distanthorizons/common/wrappers/gui/TexturedButtonWidget.java @@ -218,11 +218,11 @@ public class TexturedButtonWidget extends Button this.getX(), this.getY(), this.getWidth(), this.getHeight()); #else - //matrices.blitSprite( - // RenderPipelines.GUI_TEXTURED, - // SPRITES.get(this.active, this.isHoveredOrFocused()), - // this.getX(), this.getY(), - // this.getWidth(), this.getHeight()); + matrices.blitSprite( + RenderPipelines.GUI_TEXTURED, + SPRITES.get(this.active, this.isHoveredOrFocused()), + this.getX(), this.getY(), + this.getWidth(), this.getHeight()); #endif }