Changed console keybind to prevent confusion

This commit is contained in:
Anuken 2019-12-08 00:25:13 -05:00
parent 268f3cc3c2
commit fd202421b1
2 changed files with 3 additions and 1 deletions

View File

@ -54,7 +54,7 @@ public enum Binding implements KeyBind{
chat_history_prev(KeyCode.UP), chat_history_prev(KeyCode.UP),
chat_history_next(KeyCode.DOWN), chat_history_next(KeyCode.DOWN),
chat_scroll(new Axis(KeyCode.SCROLL)), chat_scroll(new Axis(KeyCode.SCROLL)),
console(KeyCode.BACKTICK), console(KeyCode.F8),
; ;
private final KeybindValue defaultValue; private final KeybindValue defaultValue;

View File

@ -158,6 +158,7 @@ public class SchematicsDialog extends FloatingDialog{
dialog.hide(); dialog.hide();
try{ try{
Schematic s = Schematics.readBase64(Core.app.getClipboardText()); Schematic s = Schematics.readBase64(Core.app.getClipboardText());
s.removeSteamID();
schematics.add(s); schematics.add(s);
setup(); setup();
ui.showInfoFade("$schematic.saved"); ui.showInfoFade("$schematic.saved");
@ -172,6 +173,7 @@ public class SchematicsDialog extends FloatingDialog{
try{ try{
Schematic s = Schematics.read(file); Schematic s = Schematics.read(file);
s.removeSteamID();
schematics.add(s); schematics.add(s);
setup(); setup();
showInfo(s); showInfo(s);