mirror of
https://github.com/Anuken/Mindustry.git
synced 2026-01-28 07:22:21 -08:00
Fixed command mode button not showing up after toggling editor blocks on mobile
This commit is contained in:
parent
d207c3261f
commit
bfeb8ccc38
1 changed files with 1 additions and 1 deletions
|
|
@ -291,7 +291,7 @@ public class MobileInput extends InputHandler implements GestureListener{
|
|||
});
|
||||
|
||||
group.fill(t -> {
|
||||
t.visible(() -> !hasSchematic() && !Core.settings.getBool("editor-blocks-shown"));
|
||||
t.visible(() -> !hasSchematic() && !(state.isEditor() && Core.settings.getBool("editor-blocks-shown")));
|
||||
t.bottom().left();
|
||||
|
||||
t.button("@command.queue", Icon.rightOpen, Styles.clearTogglet, () -> {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue