mirror of
https://github.com/Ellpeck/PrettyPipes.git
synced 2024-11-22 11:53:29 +01:00
parent
a026cfc550
commit
718cef5c4e
1 changed files with 6 additions and 4 deletions
|
@ -112,10 +112,12 @@ public class ItemTerminalGui extends ContainerScreen<ItemTerminalContainer> {
|
||||||
this.minusButton.active = this.requestAmount > 1;
|
this.minusButton.active = this.requestAmount > 1;
|
||||||
|
|
||||||
this.search.tick();
|
this.search.tick();
|
||||||
String text = this.search.getText();
|
if (this.items != null) {
|
||||||
if (!this.lastSearchText.equals(text)) {
|
String text = this.search.getText();
|
||||||
this.lastSearchText = text;
|
if (!this.lastSearchText.equals(text)) {
|
||||||
this.updateWidgets();
|
this.lastSearchText = text;
|
||||||
|
this.updateWidgets();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue