Added support for Alt keys

This commit is contained in:
Anuken 2019-08-05 16:54:42 -04:00
parent 99f2b8f536
commit b02053a70c
2 changed files with 1 additions and 2 deletions

View File

@ -137,7 +137,6 @@ public class LoadDialog extends FloatingDialog{
for(SaveSlot slot : control.saves.getSaveSlots()) if(!slot.isHidden()) valids = true;
if(!valids){
slots.row();
slots.addButton("$save.none", () -> {
}).disabled(true).fillX().margin(20f).minWidth(340f).height(80f).pad(4f);

View File

@ -176,7 +176,7 @@ public class MapsDialog extends FloatingDialog{
t.row();
t.add("$editor.author").padRight(10).color(Color.GRAY);
t.row();
t.add(map.author()).growX().wrap().padTop(2);
t.add(map.custom && map.author().isEmpty() ? "Anuke" : map.author()).growX().wrap().padTop(2);
t.row();
t.add("$editor.description").padRight(10).color(Color.GRAY).top();
t.row();