1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 23:12:56 +08:00

Limit maximum height of settings enum dropdowns

This commit is contained in:
Bartłomiej Dach 2021-06-16 10:25:50 +02:00
parent 64bb1f381b
commit d298e95df7

View File

@ -19,6 +19,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);
}
}
}