From 575af22cee4402f616f11fe8bc2581b913717b42 Mon Sep 17 00:00:00 2001 From: LexManos Date: Wed, 22 Jan 2020 11:56:05 -0800 Subject: [PATCH] Fix default widget foreground color. --- .../minecraft/net/minecraft/client/gui/widget/Widget.java.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/minecraft/net/minecraft/client/gui/widget/Widget.java.patch b/patches/minecraft/net/minecraft/client/gui/widget/Widget.java.patch index b73daf954..469b0c7b8 100644 --- a/patches/minecraft/net/minecraft/client/gui/widget/Widget.java.patch +++ b/patches/minecraft/net/minecraft/client/gui/widget/Widget.java.patch @@ -30,7 +30,7 @@ } + + public static final int UNSET_FG_COLOR = -1; -+ protected int packedFGColor = 0; ++ protected int packedFGColor = UNSET_FG_COLOR; + public int getFGColor() { + if (packedFGColor != UNSET_FG_COLOR) return packedFGColor; + return this.active ? 16777215 : 10526880; // White : Light Grey