Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
xzxADIxzx committed Oct 6, 2021
1 parent e50e5b6 commit e32be0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ui/fragments/ModHudFragment.java
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public void build(Group parent){
wavesMain.row();
wavesMain.table(select -> {
float isize = dsize - 28f;
select.defaults().size(dsize - 2f).left();
select.defaults().size(dsize - 1.5f).left();

ImageButtonStyle style = new ImageButtonStyle(){{
up = Tex.wavepane;
Expand All @@ -178,7 +178,7 @@ public void build(Group parent){
select.button(kill, style, isize, () -> player.unit().kill()).name("kill");
select.button(tele, style, isize, SchemeSize.input::teleport).name("teleport");
select.button(port, style, isize, SchemeSize.input::toggleMobilePanCam).name("pancam").get(
).image().color(Pal.gray).width(4).height(dsize - 2f).padRight(-dsize + 2f + isize);
).image().color(Pal.gray).width(4).height(dsize - 1.5f).padRight(-dsize + 1.5f + isize);
}).left().name("mod buttons");
}

Expand Down

0 comments on commit e32be0f

Please sign in to comment.