From a30567394ed1973230716b6d6b55090a1097d407 Mon Sep 17 00:00:00 2001
From: smoogipoo <smoogipoo@smgi.me>
Date: Fri, 23 Aug 2019 12:39:24 +0900
Subject: [PATCH] Remove bottom margin from show more button

---
 osu.Game/Overlays/Profile/Sections/ShowMoreButton.cs | 2 --
 1 file changed, 2 deletions(-)

diff --git a/osu.Game/Overlays/Profile/Sections/ShowMoreButton.cs b/osu.Game/Overlays/Profile/Sections/ShowMoreButton.cs
index 5ed546c62b..cf4e1c0dde 100644
--- a/osu.Game/Overlays/Profile/Sections/ShowMoreButton.cs
+++ b/osu.Game/Overlays/Profile/Sections/ShowMoreButton.cs
@@ -124,14 +124,12 @@ namespace osu.Game.Overlays.Profile.Sections
 
         private class ChevronIcon : SpriteIcon
         {
-            private const int bottom_margin = 2;
             private const int icon_size = 8;
 
             public ChevronIcon()
             {
                 Anchor = Anchor.Centre;
                 Origin = Anchor.Centre;
-                Margin = new MarginPadding { Bottom = bottom_margin };
                 Size = new Vector2(icon_size);
                 Icon = FontAwesome.Solid.ChevronDown;
             }