Also detector amount field, fixes #272

This commit is contained in:
Raoul Van den Berge
2016-08-17 17:09:49 +02:00
parent 6f34e7b986
commit 1ee7936bcb
2 changed files with 2 additions and 2 deletions

View File

@@ -28,7 +28,7 @@ public class GuiDetector extends GuiBase {
addSideButton(new SideButtonCompare(TileDetector.COMPARE, CompareUtils.COMPARE_DAMAGE));
addSideButton(new SideButtonCompare(TileDetector.COMPARE, CompareUtils.COMPARE_NBT));
AMOUNT = new GuiTextField(0, fontRendererObj, x + 62 + 1, y + 23 + 1, 25, fontRendererObj.FONT_HEIGHT);
AMOUNT = new GuiTextField(0, fontRendererObj, x + 62 + 1, y + 23 + 1, 29, fontRendererObj.FONT_HEIGHT);
AMOUNT.setText(String.valueOf(TileDetector.AMOUNT.getValue()));
AMOUNT.setEnableBackgroundDrawing(false);
AMOUNT.setVisible(true);