fix tooltip rendering issue
This commit is contained in:
@@ -48,6 +48,8 @@ public class GuiGrid extends GuiContainer {
|
|||||||
int xx = getGridXStart();
|
int xx = getGridXStart();
|
||||||
int yy = getGridYStart();
|
int yy = getGridYStart();
|
||||||
|
|
||||||
|
ItemStack toolTip = null;
|
||||||
|
|
||||||
for (int i = 0; i < 9 * 4; ++i) {
|
for (int i = 0; i < 9 * 4; ++i) {
|
||||||
ItemStack stack = null;
|
ItemStack stack = null;
|
||||||
|
|
||||||
@@ -72,7 +74,7 @@ public class GuiGrid extends GuiContainer {
|
|||||||
GL11.glEnable(GL11.GL_DEPTH_TEST);
|
GL11.glEnable(GL11.GL_DEPTH_TEST);
|
||||||
|
|
||||||
if (stack != null) {
|
if (stack != null) {
|
||||||
renderToolTip(stack, mouseX, mouseY);
|
toolTip = stack;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -83,6 +85,10 @@ public class GuiGrid extends GuiContainer {
|
|||||||
yy += 18;
|
yy += 18;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (toolTip != null) {
|
||||||
|
renderToolTip(toolTip, mouseX, mouseY);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private int getGridXStart() {
|
private int getGridXStart() {
|
||||||
|
Reference in New Issue
Block a user