Skip to content

Commit

Permalink
Merge branch 'master' into v8
Browse files Browse the repository at this point in the history
# Conflicts:
#	gradle.properties
  • Loading branch information
buthed010203 committed Oct 2, 2024
2 parents fb186e9 + d431ed8 commit 022b994
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified core/assets/maps/seaPort.msav
Binary file not shown.
2 changes: 1 addition & 1 deletion core/src/mindustry/editor/WaveGraph.java
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ public void rebuild(){
t.button(b -> {
Color tcolor = color(type).cpy();
b.image().size(32f).update(i -> i.setColor(b.isChecked() ? Tmp.c1.set(tcolor).mul(0.5f) : tcolor)).get().act(1);
b.image(type.uiIcon).size(32f).padRight(20).update(i -> i.setColor(b.isChecked() ? Color.gray : Color.white)).get().act(1);
b.image(type.uiIcon).size(32f).scaling(Scaling.fit).padRight(20).update(i -> i.setColor(b.isChecked() ? Color.gray : Color.white)).get().act(1);
b.margin(0f);
}, Styles.fullTogglet, () -> {
if(!hidden.add(type)){
Expand Down

0 comments on commit 022b994

Please sign in to comment.