Skip to content

Commit 9522568

Browse files
committed
scale item z by 1
closes #303
1 parent 1087b56 commit 9522568

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/api/java/mcp/mobius/waila/api/component/ItemListComponent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public void render(GuiGraphics ctx, int x, int y, float delta) {
5858
var pose = ctx.pose();
5959
pose.pushPose();
6060
pose.translate(x, y, 0);
61-
pose.scale(scale, scale, 0f);
61+
pose.scale(scale, scale, 1f);
6262

6363
for (var i = 0; i < items.size(); i++) {
6464
var item = items.get(i);

0 commit comments

Comments
 (0)