From 614744085a43c73bc514a71425a0a2813b8fdc9b Mon Sep 17 00:00:00 2001 From: Anuken Date: Thu, 6 Feb 2025 13:36:57 -0500 Subject: [PATCH] Cleanup --- core/src/mindustry/editor/BannedContentDialog.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/mindustry/editor/BannedContentDialog.java b/core/src/mindustry/editor/BannedContentDialog.java index e401b3af73..2a15742195 100644 --- a/core/src/mindustry/editor/BannedContentDialog.java +++ b/core/src/mindustry/editor/BannedContentDialog.java @@ -70,7 +70,7 @@ public class BannedContentDialog extends BaseDialog t.table(c -> { c.marginTop(8f); c.defaults().marginRight(4f); - for (Category category : Category.values()){ + for(Category category : Category.values()){ c.button(ui.getIcon(category.name()), Styles.squareTogglei, () -> { if(selectedCategory == category){ selectedCategory = null; @@ -183,7 +183,7 @@ public class BannedContentDialog extends BaseDialog for(T content : array){ TextureRegion region = content.uiIcon; - ImageButton button = new ImageButton(Tex.whiteui, Styles.squarei); + ImageButton button = new ImageButton(Tex.whiteui, Styles.clearNonei); button.getStyle().imageUp = new TextureRegionDrawable(region); button.resizeImage(8 * 4f); if(isSelected) button.clicked(() -> {