Skip to content

Commit

Permalink
Fix the positioning of the preview pose in the Pose Deletion screen
Browse files Browse the repository at this point in the history
  • Loading branch information
Mrbysco committed Feb 24, 2024
1 parent c9be42b commit 0192db7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

0 comments on commit 0192db7

Please sign in to comment.