From 0e07ce26bccf37ef866d8d11ce3097c248928d65 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Fri, 2 Dec 2016 06:35:55 -0500 Subject: [PATCH] Remove Height from dropdown --- osu.Game/Overlays/Options/DropdownOption.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/osu.Game/Overlays/Options/DropdownOption.cs b/osu.Game/Overlays/Options/DropdownOption.cs index a75824ddd5..567e2821ab 100644 --- a/osu.Game/Overlays/Options/DropdownOption.cs +++ b/osu.Game/Overlays/Options/DropdownOption.cs @@ -64,11 +64,10 @@ namespace osu.Game.Overlays.Options dropdown = new DropDownMenu { Margin = new MarginPadding { Top = 5 }, - Height = 10, RelativeSizeAxes = Axes.X, Items = items.Select(item => new DropDownMenuItem(item.Item1, item.Item2)) } }; } } -} \ No newline at end of file +}