Apply height constraints to all settings dropdown

This commit is contained in:
Salman Ahmed
2020-08-01 10:02:46 +03:00
parent 2460488255
commit 2190e6443a
2 changed files with 2 additions and 2 deletions

View File

@ -38,6 +38,8 @@ namespace osu.Game.Overlays.Settings
Margin = new MarginPadding { Top = 5 };
RelativeSizeAxes = Axes.X;
}
protected override DropdownMenu CreateMenu() => base.CreateMenu().With(m => m.MaxHeight = 200);
}
}
}