From 0b4c4c404957e2695f9b55f2217aa1770c713c66 Mon Sep 17 00:00:00 2001 From: Anuken Date: Mon, 13 Oct 2025 20:29:52 +0900 Subject: [PATCH] Fixed #11281 --- core/src/mindustry/core/UI.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/src/mindustry/core/UI.java b/core/src/mindustry/core/UI.java index 84eb1d70b9..124e9ce07d 100644 --- a/core/src/mindustry/core/UI.java +++ b/core/src/mindustry/core/UI.java @@ -601,6 +601,10 @@ public class UI implements ApplicationListener, Loadable{ t.update(() -> { t.setPosition(Core.graphics.getWidth()/2f, Core.graphics.getHeight()/2f, Align.center); t.toFront(); + + if(state.isMenu() || !ui.hudfrag.shown){ + t.remove(); + } }); t.actions(Actions.fadeOut(duration, Interp.pow4In), Actions.remove()); t.pack();