Skip to content

Commit bd4fd06

Browse files
committed
scale item z by 1
closes #303 (cherry picked from commit ac3e46c)
1 parent c11edb0 commit bd4fd06

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
@@ -59,7 +59,7 @@ public void render(GuiGraphics ctx, int x, int y, DeltaTracker delta) {
5959
var pose = ctx.pose();
6060
pose.pushPose();
6161
pose.translate(x, y, 0);
62-
pose.scale(scale, scale, 0f);
62+
pose.scale(scale, scale, 1f);
6363

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

0 commit comments

Comments
 (0)