This commit is contained in:
raoulvdberge
2017-04-18 21:33:00 +02:00
parent 2cd36d7728
commit 4b1fd70395
2 changed files with 4 additions and 1 deletions

View File

@@ -8,6 +8,7 @@
- You can now shift click Grid Filters into a Grid instead of manually inserting them (raoulvdberge)
- The Solderer inventory isn't sided anymore (raoulvdberge)
- You can now use up and down arrows to scroll through Grid search history (raoulvdberge)
- Fixed Grid crash (raoulvdberge)
### 1.4.2
- Updated Forge to 2261 (raoulvdberge)

View File

@@ -421,7 +421,9 @@ public class GuiGrid extends GuiBase implements IGridDisplay {
drawTexture(x + 152, y + getTabDelta() + getHeader() + (getVisibleRows() * 18) + 22, 240, ty * 16, 16, 16);
}
searchField.drawTextBox();
if (searchField != null) {
searchField.drawTextBox();
}
}
@Override