mirror of
https://github.com/FabricMC/fabric.git
synced 2025-04-03 10:39:57 -04:00
Fix rendering issues after visiting the disconnected screen.
Fixes #2944
This commit is contained in:
parent
fe9afa9d57
commit
4e68ac5bb4
1 changed files with 1 additions and 2 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue