Fix rendering issues after visiting the disconnected screen.

Fixes 
This commit is contained in:
modmuss50 2023-03-01 13:20:54 +00:00
parent fe9afa9d57
commit 4e68ac5bb4

View file

@ -16,7 +16,6 @@
package net.fabricmc.fabric.mixin.networking.client;
import com.mojang.blaze3d.systems.RenderSystem;
import org.objectweb.asm.Opcodes;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.Shadow;
@ -67,7 +66,7 @@ public abstract class DisconnectedScreenMixin extends Screen {
private int render(MultilineText instance, MatrixStack matrixStack, int x, int y) {
DrawableHelper.enableScissor(0, y, width, y + reasonHeight);
instance.drawCenterWithShadow(matrixStack, x, y - scroll);
RenderSystem.disableScissor();
DrawableHelper.disableScissor();
// Draw gradient at the top/bottom to indicate that the text is scrollable.
if (actualReasonHeight > reasonHeight) {