We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f036d80 commit 89e87a1Copy full SHA for 89e87a1
1 file changed
src/main/java/mezz/jei/ingredients/IngredientFilter.java
@@ -434,12 +434,8 @@ public void addCollapsedStateListener(Runnable listener) {
434
collapsedStateListeners.add(listener);
435
}
436
437
- /**
438
- * Called when a group is expanded or collapsed. Invalidates the cached collapsed list
439
- * and notifies only collapsed-state listeners (preserves the current page position).
440
- */
441
public void notifyCollapsedStateChanged() {
442
- this.filterCached = null;
+ // Do NOT null filterCached here. Creates client lag spikes.
443
for (Runnable listener : collapsedStateListeners) {
444
listener.run();
445
0 commit comments