mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-01-11 07:39:39 +07:00
Changed console keybind to prevent confusion
This commit is contained in:
parent
268f3cc3c2
commit
fd202421b1
@ -54,7 +54,7 @@ public enum Binding implements KeyBind{
|
||||
chat_history_prev(KeyCode.UP),
|
||||
chat_history_next(KeyCode.DOWN),
|
||||
chat_scroll(new Axis(KeyCode.SCROLL)),
|
||||
console(KeyCode.BACKTICK),
|
||||
console(KeyCode.F8),
|
||||
;
|
||||
|
||||
private final KeybindValue defaultValue;
|
||||
|
@ -158,6 +158,7 @@ public class SchematicsDialog extends FloatingDialog{
|
||||
dialog.hide();
|
||||
try{
|
||||
Schematic s = Schematics.readBase64(Core.app.getClipboardText());
|
||||
s.removeSteamID();
|
||||
schematics.add(s);
|
||||
setup();
|
||||
ui.showInfoFade("$schematic.saved");
|
||||
@ -172,6 +173,7 @@ public class SchematicsDialog extends FloatingDialog{
|
||||
|
||||
try{
|
||||
Schematic s = Schematics.read(file);
|
||||
s.removeSteamID();
|
||||
schematics.add(s);
|
||||
setup();
|
||||
showInfo(s);
|
||||
|
Loading…
Reference in New Issue
Block a user