From 9ccf95971ec2c70cf56c15f9addffef3e7852930 Mon Sep 17 00:00:00 2001 From: Anuken Date: Fri, 7 Feb 2020 20:51:59 -0500 Subject: [PATCH] Fixed small launch items button --- core/src/mindustry/ui/ItemsDisplay.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/ui/ItemsDisplay.java b/core/src/mindustry/ui/ItemsDisplay.java index 995918895f..a597bd256c 100644 --- a/core/src/mindustry/ui/ItemsDisplay.java +++ b/core/src/mindustry/ui/ItemsDisplay.java @@ -44,7 +44,7 @@ public class ItemsDisplay extends Table{ t.setText(state.is(State.menu) ? "$launcheditems" : "$launchinfo"); t.setChecked(col.isCollapsed()); ((Image)t.getChildren().get(1)).setDrawable(col.isCollapsed() ? Icon.upOpen : Icon.downOpen); - }).padBottom(4).left().fillX().margin(12f); + }).padBottom(4).left().fillX().margin(12f).minWidth(200f); c.row(); c.add(col); });