Skip to content

Commit

Permalink
Bump to 1.6.2 and fix Grid searching not working. Fixes #1923
Browse files Browse the repository at this point in the history
  • Loading branch information
raoulvdberge committed Jul 30, 2018
1 parent 262149f commit 7e512eb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,9 @@ public void init(int x, int y) {

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;
Expand Down

0 comments on commit 7e512eb

Please sign in to comment.