From a2ee9f7570b2b1ee7f7b51950301715a15496d00 Mon Sep 17 00:00:00 2001 From: Danielshe Date: Mon, 19 Aug 2019 22:08:27 +0800 Subject: Build 2: Fix bugs - Fix freeze caused by the backspace feature - Page buttons gone when the search box is on top - Fixed #143 - Made text red when no entry has been found --- src/main/java/me/shedaniel/rei/impl/RecipeHelperImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java/me/shedaniel/rei/impl/RecipeHelperImpl.java') diff --git a/src/main/java/me/shedaniel/rei/impl/RecipeHelperImpl.java b/src/main/java/me/shedaniel/rei/impl/RecipeHelperImpl.java index d05823fe6..81710bddc 100644 --- a/src/main/java/me/shedaniel/rei/impl/RecipeHelperImpl.java +++ b/src/main/java/me/shedaniel/rei/impl/RecipeHelperImpl.java @@ -218,7 +218,7 @@ public class RecipeHelperImpl implements RecipeHelper { @SuppressWarnings("deprecation") public void recipesLoaded(RecipeManager recipeManager) { - ScreenHelper.clearRecipeScreens(); + ScreenHelper.clearData(); this.recipeCount.set(0); this.recipeManager = recipeManager; this.recipeCategoryListMap.clear(); -- cgit