Bump to 1.6.2 and fix Grid searching not working. Fixes #1923
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
# Refined Storage Changelog
|
||||
|
||||
### 1.6.2
|
||||
- Fixed Grid searching not working (raoulvdberge)
|
||||
|
||||
### 1.6.1
|
||||
- Added fluid autocrafting (raoulvdberge)
|
||||
- Added Crafting Upgrade support for fluids on the Exporter, Constructor and Fluid Interface (raoulvdberge)
|
||||
|
||||
@@ -16,7 +16,7 @@ apply plugin: 'maven'
|
||||
apply plugin: 'maven-publish'
|
||||
apply plugin: 'net.minecraftforge.gradle.forge'
|
||||
|
||||
version = "1.6.1"
|
||||
version = "1.6.2"
|
||||
def env = System.getenv()
|
||||
if (env.BUILD_NUMBER) {
|
||||
version = version + "-" + "${env.BUILD_NUMBER}"
|
||||
|
||||
@@ -99,7 +99,9 @@ public class GuiGrid extends GuiBase implements IResizableDisplay {
|
||||
|
||||
if (searchField == null) {
|
||||
searchField = new TextFieldSearch(0, fontRenderer, sx, sy, 88 - 6);
|
||||
searchField.addListener(view::sort);
|
||||
searchField.addListener(() -> {
|
||||
this.getView().sort(); // Use getter since this view can be replaced.
|
||||
});
|
||||
searchField.setMode(grid.getSearchBoxMode());
|
||||
} else {
|
||||
searchField.x = sx;
|
||||
|
||||
Reference in New Issue
Block a user