From 186e8f707e44e4fe11cd4b3c82b880a9ec18c252 Mon Sep 17 00:00:00 2001 From: Anuken Date: Wed, 23 Jun 2021 14:02:06 -0400 Subject: [PATCH] Fixed #5453 --- core/src/mindustry/input/MobileInput.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/mindustry/input/MobileInput.java b/core/src/mindustry/input/MobileInput.java index 55851e5c1c..cc1ced2143 100644 --- a/core/src/mindustry/input/MobileInput.java +++ b/core/src/mindustry/input/MobileInput.java @@ -270,6 +270,7 @@ public class MobileInput extends InputHandler implements GestureListener{ b.button(Icon.save, style, this::showSchematicSave).disabled(f -> lastSchematic == null || lastSchematic.file != null); b.button(Icon.cancel, style, () -> { selectRequests.clear(); + lastSchematic = null; }); b.row(); b.button(Icon.flipX, style, () -> flipRequests(selectRequests, true));