From 5e2eccadbd91171c01cdb209d1338bcfb7786b1c Mon Sep 17 00:00:00 2001 From: shedaniel Date: Thu, 2 Jan 2020 14:31:16 +0800 Subject: 3.3 Fix #58 Close #134 Close #158 Fix #227 --- .../java/me/shedaniel/rei/gui/widget/RecipeArrowWidget.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/main/java/me/shedaniel/rei/gui/widget/RecipeArrowWidget.java') diff --git a/src/main/java/me/shedaniel/rei/gui/widget/RecipeArrowWidget.java b/src/main/java/me/shedaniel/rei/gui/widget/RecipeArrowWidget.java index 06e9f45ed..f48d3020e 100644 --- a/src/main/java/me/shedaniel/rei/gui/widget/RecipeArrowWidget.java +++ b/src/main/java/me/shedaniel/rei/gui/widget/RecipeArrowWidget.java @@ -15,21 +15,21 @@ import java.util.Collections; import java.util.List; public class RecipeArrowWidget extends WidgetWithBounds { - + private int x, y; private boolean animated; - + public RecipeArrowWidget(int x, int y, boolean animated) { this.x = x; this.y = y; this.animated = animated; } - + @Override public Rectangle getBounds() { return new Rectangle(x, y, 24, 17); } - + @Override public void render(int mouseX, int mouseY, float delta) { MinecraftClient.getInstance().getTextureManager().bindTexture(DefaultPlugin.getDisplayTexture()); @@ -39,7 +39,7 @@ public class RecipeArrowWidget extends WidgetWithBounds { blit(x, y, 82, 91, width, 17); } } - + @Override public List children() { return Collections.emptyList(); -- cgit