From bf60ef163361bc2706a6962118f7c9fa58e91c63 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Fri, 22 May 2026 19:29:51 +0900 Subject: [PATCH] Increase minimum size of video/storyboard icons globally (#37866) They were shockingly small. | Before | After | | :---: | :---: | | osu! 2026-05-22 at 08 19 27 | osu! 2026-05-22 at 08 17 23 | | osu! 2026-05-22 at 08 19 34 | osu! 2026-05-22 at 08 17 16 | --- osu.Game/Beatmaps/Drawables/Cards/BeatmapCardExtra.cs | 4 ++-- osu.Game/Beatmaps/Drawables/Cards/BeatmapCardNormal.cs | 4 ++-- .../MatchmakingSelectPanel.CardContentBeatmap.cs | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/osu.Game/Beatmaps/Drawables/Cards/BeatmapCardExtra.cs b/osu.Game/Beatmaps/Drawables/Cards/BeatmapCardExtra.cs index 4c4a063708..26553ac2e0 100644 --- a/osu.Game/Beatmaps/Drawables/Cards/BeatmapCardExtra.cs +++ b/osu.Game/Beatmaps/Drawables/Cards/BeatmapCardExtra.cs @@ -244,10 +244,10 @@ namespace osu.Game.Beatmaps.Drawables.Cards }); if (BeatmapSet.HasVideo) - leftIconArea.Add(new VideoIconPill { IconSize = new Vector2(16) }); + leftIconArea.Add(new VideoIconPill()); if (BeatmapSet.HasStoryboard) - leftIconArea.Add(new StoryboardIconPill { IconSize = new Vector2(16) }); + leftIconArea.Add(new StoryboardIconPill()); if (BeatmapSet.FeaturedInSpotlight) { diff --git a/osu.Game/Beatmaps/Drawables/Cards/BeatmapCardNormal.cs b/osu.Game/Beatmaps/Drawables/Cards/BeatmapCardNormal.cs index 6974cf81ea..3e0d61bcb9 100644 --- a/osu.Game/Beatmaps/Drawables/Cards/BeatmapCardNormal.cs +++ b/osu.Game/Beatmaps/Drawables/Cards/BeatmapCardNormal.cs @@ -226,10 +226,10 @@ namespace osu.Game.Beatmaps.Drawables.Cards }); if (BeatmapSet.HasVideo) - leftIconArea.Add(new VideoIconPill { IconSize = new Vector2(16) }); + leftIconArea.Add(new VideoIconPill()); if (BeatmapSet.HasStoryboard) - leftIconArea.Add(new StoryboardIconPill { IconSize = new Vector2(16) }); + leftIconArea.Add(new StoryboardIconPill()); if (BeatmapSet.FeaturedInSpotlight) { diff --git a/osu.Game/Screens/OnlinePlay/Matchmaking/Match/BeatmapSelect/MatchmakingSelectPanel.CardContentBeatmap.cs b/osu.Game/Screens/OnlinePlay/Matchmaking/Match/BeatmapSelect/MatchmakingSelectPanel.CardContentBeatmap.cs index e2d5fa7890..ede68cfa7e 100644 --- a/osu.Game/Screens/OnlinePlay/Matchmaking/Match/BeatmapSelect/MatchmakingSelectPanel.CardContentBeatmap.cs +++ b/osu.Game/Screens/OnlinePlay/Matchmaking/Match/BeatmapSelect/MatchmakingSelectPanel.CardContentBeatmap.cs @@ -307,10 +307,10 @@ namespace osu.Game.Screens.OnlinePlay.Matchmaking.Match.BeatmapSelect }; if (beatmapSet.HasVideo) - leftIconArea.Add(new VideoIconPill { IconSize = new Vector2(16) }); + leftIconArea.Add(new VideoIconPill()); if (beatmapSet.HasStoryboard) - leftIconArea.Add(new StoryboardIconPill { IconSize = new Vector2(16) }); + leftIconArea.Add(new StoryboardIconPill()); if (beatmapSet.HasExplicitContent) {