mirror of
https://github.com/Ellpeck/PrettyPipes.git
synced 2024-11-24 20:48:34 +01:00
Compare commits
No commits in common. "f8b618a1d24dd5ea960f3f74fd18144f7fc1bab2" and "d8122ae7e27729df911c844e44bb5c0349e28963" have entirely different histories.
f8b618a1d2
...
d8122ae7e2
1 changed files with 5 additions and 12 deletions
|
@ -59,13 +59,6 @@ public class ItemTerminalGui extends ContainerScreen<ItemTerminalContainer> {
|
||||||
@Override
|
@Override
|
||||||
protected void init() {
|
protected void init() {
|
||||||
super.init();
|
super.init();
|
||||||
|
|
||||||
this.search = this.addButton(new TextFieldWidget(this.font, this.guiLeft + this.getXOffset() + 97, this.guiTop + 6, 86, 8, new StringTextComponent("")));
|
|
||||||
this.search.setEnableBackgroundDrawing(false);
|
|
||||||
this.lastSearchText = "";
|
|
||||||
if (this.items != null)
|
|
||||||
this.updateWidgets();
|
|
||||||
|
|
||||||
this.plusButton = this.addButton(new Button(this.guiLeft + this.getXOffset() + 95 - 7 + 12, this.guiTop + 103, 12, 12, new StringTextComponent("+"), button -> {
|
this.plusButton = this.addButton(new Button(this.guiLeft + this.getXOffset() + 95 - 7 + 12, this.guiTop + 103, 12, 12, new StringTextComponent("+"), button -> {
|
||||||
int modifier = requestModifier();
|
int modifier = requestModifier();
|
||||||
if (modifier > 1 && this.requestAmount == 1) {
|
if (modifier > 1 && this.requestAmount == 1) {
|
||||||
|
@ -116,6 +109,11 @@ public class ItemTerminalGui extends ContainerScreen<ItemTerminalContainer> {
|
||||||
for (int x = 0; x < 9; x++)
|
for (int x = 0; x < 9; x++)
|
||||||
this.addButton(new ItemTerminalWidget(this.guiLeft + this.getXOffset() + 8 + x * 18, this.guiTop + 18 + y * 18, x, y, this));
|
this.addButton(new ItemTerminalWidget(this.guiLeft + this.getXOffset() + 8 + x * 18, this.guiTop + 18 + y * 18, x, y, this));
|
||||||
}
|
}
|
||||||
|
this.search = this.addButton(new TextFieldWidget(this.font, this.guiLeft + this.getXOffset() + 97, this.guiTop + 6, 86, 8, new StringTextComponent("")));
|
||||||
|
this.search.setEnableBackgroundDrawing(false);
|
||||||
|
this.lastSearchText = "";
|
||||||
|
if (this.items != null)
|
||||||
|
this.updateWidgets();
|
||||||
}
|
}
|
||||||
|
|
||||||
protected int getXOffset() {
|
protected int getXOffset() {
|
||||||
|
@ -161,11 +159,6 @@ public class ItemTerminalGui extends ContainerScreen<ItemTerminalContainer> {
|
||||||
}
|
}
|
||||||
if (button == 0)
|
if (button == 0)
|
||||||
this.isScrolling = false;
|
this.isScrolling = false;
|
||||||
else if (button == 1 && mouseX >= this.search.x && mouseX <= this.search.x + this.search.getWidth() && mouseY >= this.search.y && mouseY <= this.search.y + 8) {
|
|
||||||
//clear text from search field when letting go of right mouse button within search field
|
|
||||||
this.search.setText("");
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return super.mouseReleased(mouseX, mouseY, button);
|
return super.mouseReleased(mouseX, mouseY, button);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue