Skip to content

Commit

Permalink
uuh some stuff (tiny)
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeRNG committed Mar 8, 2023
1 parent a216f62 commit 4376b18
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,13 @@ public void render(MatrixStack matrices, int mouseX, int mouseY, float delta) {
RenderSystem.setShaderColor(1.0F, 1.0F, 1.0F, 1.0F);
this.drawMouseoverTooltip(matrices, mouseX, mouseY);
}

public boolean charTyped(char chr, int modifiers) {
if(this.searchBox.charTyped(chr, modifiers)) {
populate();
return true;
}
return false;
}
protected void drawBackground(MatrixStack matrices, float delta, int mouseX, int mouseY) {
RenderSystem.setShaderColor(1.0F, 1.0F, 1.0F, 1.0F);
DevInventoryGroup itemGroup = DevInventoryGroup.GROUPS[selectedTab];
Expand Down

0 comments on commit 4376b18

Please sign in to comment.