mirror of https://github.com/ppy/osu
Adjust display to avoid overlaps
This commit is contained in:
parent
7b012f1def
commit
b7c1cfbe63
|
@ -80,7 +80,7 @@ protected OverlinedDisplay(string title)
|
|||
},
|
||||
new Drawable[]
|
||||
{
|
||||
Content = new Container { Margin = new MarginPadding { Top = 5 } }
|
||||
Content = new Container { Padding = new MarginPadding { Top = 5 } }
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
|
@ -130,6 +130,7 @@ private void load()
|
|||
SelectedItem = { BindTarget = SelectedItem }
|
||||
}
|
||||
},
|
||||
null,
|
||||
new Drawable[]
|
||||
{
|
||||
new TriangleButton
|
||||
|
@ -139,6 +140,12 @@ private void load()
|
|||
Action = showBeatmapResults
|
||||
}
|
||||
}
|
||||
},
|
||||
RowDimensions = new[]
|
||||
{
|
||||
new Dimension(),
|
||||
new Dimension(GridSizeMode.Absolute, 5),
|
||||
new Dimension(GridSizeMode.AutoSize)
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue