Add scrollbar to manage collections dialog

This commit is contained in:
Dean Herbert 2024-11-18 14:38:12 +09:00
parent 5276f77ebd
commit e5778eb1fc
No known key found for this signature in database
1 changed files with 3 additions and 1 deletions

View File

@ -104,8 +104,8 @@ private partial class Scroll : OsuScrollContainer
public Scroll()
{
ScrollbarVisible = false;
Padding = new MarginPadding(10);
ScrollbarOverlapsContent = false;
base.Content.Add(new FillFlowContainer
{
@ -187,6 +187,8 @@ public Flow()
{
Spacing = new Vector2(0, 5);
LayoutEasing = Easing.OutQuint;
Padding = new MarginPadding { Right = 5 };
}
protected override void LoadComplete()