Difficulty balance / Better map display / UI fixes

This commit is contained in:
Anuken
2018-11-07 18:51:27 -05:00
parent 38fdc11917
commit 042c671bd4
10 changed files with 13 additions and 13 deletions
@@ -60,7 +60,7 @@ public class SectorsDialog extends FloatingDialog{
margin(0);
getTitleTable().clear();
clear();
stack(content(), buttons(), container).grow();
stack(content(), container, buttons()).grow();
shown(this::setup);
}
@@ -128,7 +128,7 @@ public class SectorsDialog extends FloatingDialog{
class SectorView extends Element{
float lastX, lastY;
boolean clicked = false;
float panX = 0, panY = -sectorSize/2f;
float panX = sectorSize/2f, panY = sectorSize/2f;
SectorView(){
addListener(new InputListener(){