From 86aeabc9115a6efe21913e20fadcccf758c0b118 Mon Sep 17 00:00:00 2001 From: Anuken Date: Sun, 17 Feb 2019 11:36:54 -0500 Subject: [PATCH] Fixed item display being too close to top left of screen --- core/src/io/anuke/mindustry/ui/ItemsDisplay.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/io/anuke/mindustry/ui/ItemsDisplay.java b/core/src/io/anuke/mindustry/ui/ItemsDisplay.java index 49a3b40ccf..83a42a18b8 100644 --- a/core/src/io/anuke/mindustry/ui/ItemsDisplay.java +++ b/core/src/io/anuke/mindustry/ui/ItemsDisplay.java @@ -26,7 +26,7 @@ public class ItemsDisplay extends Table{ margin(0); table("flat", t -> { - t.margin(2); + t.margin(10).marginLeft(15).marginTop(15f); ObjectIntMap items = data.items(); for(Item item : content.items()){ if(item.type == ItemType.material && data.isUnlocked(item)){