1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-10-23 01:47:38 +00:00

Fix background and tooltips not rendering within containers

The methods to draw these now have to be explicitly called, hence not
showing up.
This commit is contained in:
SquidDev
2017-09-12 15:05:32 +01:00
parent 1fdfcdb5f2
commit baa8993999
3 changed files with 24 additions and 0 deletions

View File

@@ -51,4 +51,12 @@ public class GuiPrinter extends GuiContainer
drawTexturedModalRect(startX + 34, startY + 21, 176, 0, 25, 45);
}
}
@Override
public void drawScreen( int mouseX, int mouseY, float partialTicks)
{
drawDefaultBackground();
super.drawScreen(mouseX, mouseY, partialTicks);
renderHoveredToolTip(mouseX, mouseY);
}
}