From 89240e6a41c414150788df959ccbd34d73d5fd3d Mon Sep 17 00:00:00 2001 From: Anuken Date: Fri, 15 Nov 2024 01:05:27 -0500 Subject: [PATCH] Fixed #10326 --- core/src/mindustry/editor/WaveInfoDialog.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/editor/WaveInfoDialog.java b/core/src/mindustry/editor/WaveInfoDialog.java index a708f7ae2b..e36bada5ae 100644 --- a/core/src/mindustry/editor/WaveInfoDialog.java +++ b/core/src/mindustry/editor/WaveInfoDialog.java @@ -173,7 +173,7 @@ public class WaveInfoDialog extends BaseDialog{ t.button(b -> { b.left(); b.image(group.type.uiIcon).size(32f).padRight(3).scaling(Scaling.fit); - b.add(group.type.localizedName).color(Pal.accent); + b.add(group.type.localizedName).ellipsis(true).width(110f).left().color(Pal.accent); b.add().growX();