From f53349ac9d83dd65bed12cf3feba6ca82ad0509d Mon Sep 17 00:00:00 2001 From: smoogipoo Date: Wed, 19 Feb 2020 19:54:07 +0900 Subject: [PATCH] Reduce size of participants tiles --- osu.Game/Screens/Multi/Components/ParticipantsList.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/osu.Game/Screens/Multi/Components/ParticipantsList.cs b/osu.Game/Screens/Multi/Components/ParticipantsList.cs index 81d530ce68..e383e0414b 100644 --- a/osu.Game/Screens/Multi/Components/ParticipantsList.cs +++ b/osu.Game/Screens/Multi/Components/ParticipantsList.cs @@ -18,7 +18,7 @@ namespace osu.Game.Screens.Multi.Components { public class ParticipantsList : MultiplayerComposite { - public const float TILE_SIZE = 70; + public const float TILE_SIZE = 35; public override Axes RelativeSizeAxes { @@ -113,7 +113,7 @@ namespace osu.Game.Screens.Multi.Components public UserTile(User user) { this.user = user; - Size = new Vector2(70f); + Size = new Vector2(TILE_SIZE); CornerRadius = 5f; Masking = true;