From 0192db73ff68d327f133c1725a4e79477551e57f Mon Sep 17 00:00:00 2001 From: Mrbysco Date: Sat, 24 Feb 2024 17:49:39 +0100 Subject: [PATCH] Fix the positioning of the preview pose in the Pose Deletion screen --- .../com/mrbysco/armorposer/client/gui/DeletePoseScreen.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/src/main/java/com/mrbysco/armorposer/client/gui/DeletePoseScreen.java b/common/src/main/java/com/mrbysco/armorposer/client/gui/DeletePoseScreen.java index e74bb6c..17baaf3 100644 --- a/common/src/main/java/com/mrbysco/armorposer/client/gui/DeletePoseScreen.java +++ b/common/src/main/java/com/mrbysco/armorposer/client/gui/DeletePoseScreen.java @@ -43,9 +43,9 @@ public void render(GuiGraphics guiGraphics, int mouseX, int mouseY, float partia this.renderBackground(guiGraphics, mouseX, mouseY, partialTicks); super.render(guiGraphics, mouseX, mouseY, partialTicks); - this.entry.renderPose(guiGraphics, this.width / 2, this.height / 2 - 50, 50); + this.entry.renderPose(guiGraphics, this.width / 2 - 5, this.height / 2 - 10, 30); guiGraphics.drawCenteredString(this.font, this.title, this.width / 2, 20, 16777215); - guiGraphics.drawCenteredString(this.font, this.warning, this.width / 2, 50, 11141120); + guiGraphics.drawCenteredString(this.font, this.warning, this.width / 2, 40, 11141120); } }