Skip to content

Commit 3a754f0

Browse files
committed
fix: option group collapse buttons invisible when not hovered
1 parent 989c55b commit 3a754f0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/dev/isxander/yacl3/gui/LowProfileButtonWidget.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public LowProfileButtonWidget(int x, int y, int width, int height, Component mes
1919
@Override
2020
public void renderWidget(GuiGraphics graphics, int mouseX, int mouseY, float deltaTicks) {
2121
if (!isHoveredOrFocused() || !active) {
22-
int j = this.active ? 0xFFFFFF : 0xA0A0A0;
22+
int j = this.active ? 0xFFFFFFFF : 0xFFA0A0A0;
2323
this.renderString(graphics, Minecraft.getInstance().font, j);
2424
} else {
2525
super.renderWidget(graphics, mouseX, mouseY, deltaTicks);

0 commit comments

Comments
 (0)