diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/LootIndicator.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/LootIndicator.java index fe7857ef2..d39784a0f 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/LootIndicator.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/LootIndicator.java @@ -67,8 +67,8 @@ public class LootIndicator extends Tag { protected void layout() { super.layout(); - if (!flipped) slot.setRect( x + 1, y, SIZE, height ); - else slot.setRect( x + (width() - SIZE) - 1, y, SIZE, height ); + if (!flipped) slot.setRect( x+2, y+2, SIZE-3, height-4 ); + else slot.setRect( x+(width()-SIZE)+1, y+2, SIZE-3, height-4 ); }