fix bug where there is light on side btns

This commit is contained in:
Raoul Van den Berge
2016-01-27 15:53:31 +01:00
parent 7551478b1a
commit 830f5f6ea0
18 changed files with 32 additions and 27 deletions

View File

@@ -1,5 +1,10 @@
package storagecraft.gui;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Comparator;
import java.util.Iterator;
import java.util.List;
import net.minecraft.client.audio.PositionedSoundRecord;
import net.minecraft.client.gui.GuiTextField;
import net.minecraft.client.renderer.GlStateManager;
@@ -21,12 +26,6 @@ import storagecraft.storage.StorageItem;
import storagecraft.tile.TileController;
import storagecraft.tile.TileGrid;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Comparator;
import java.util.Iterator;
import java.util.List;
public class GuiGrid extends GuiBase
{
public static final int SORTING_DIRECTION_ASCENDING = 0;
@@ -139,7 +138,7 @@ public class GuiGrid extends GuiBase
bindTexture("gui/grid.png");
}
drawTexturedModalRect(x, y, 0, 0, xSize, ySize);
drawTexture(x, y, 0, 0, xSize, ySize);
searchField.drawTextBox();
}