Skip to content

Commit 6147440

Browse files
committed
Cleanup
1 parent dcddabf commit 6147440

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/mindustry/editor/BannedContentDialog.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public void build(){
7070
t.table(c -> {
7171
c.marginTop(8f);
7272
c.defaults().marginRight(4f);
73-
for (Category category : Category.values()){
73+
for(Category category : Category.values()){
7474
c.button(ui.getIcon(category.name()), Styles.squareTogglei, () -> {
7575
if(selectedCategory == category){
7676
selectedCategory = null;
@@ -183,7 +183,7 @@ private void rebuildTable(Table table, boolean isSelected){
183183
for(T content : array){
184184
TextureRegion region = content.uiIcon;
185185

186-
ImageButton button = new ImageButton(Tex.whiteui, Styles.squarei);
186+
ImageButton button = new ImageButton(Tex.whiteui, Styles.clearNonei);
187187
button.getStyle().imageUp = new TextureRegionDrawable(region);
188188
button.resizeImage(8 * 4f);
189189
if(isSelected) button.clicked(() -> {

0 commit comments

Comments
 (0)