mirror of
https://github.com/ppy/osu.git
synced 2024-12-15 05:42:56 +08:00
Split onto multiple lines
This commit is contained in:
parent
3c35badf06
commit
77affc1eb7
@ -110,7 +110,13 @@ namespace osu.Game.Overlays.Direct
|
||||
RelativeSizeAxes = Axes.X,
|
||||
AutoSizeAxes = Axes.Y,
|
||||
Direction = FillDirection.Vertical,
|
||||
Padding = new MarginPadding { Top = vertical_padding, Bottom = vertical_padding, Left = horizontal_padding, Right = horizontal_padding },
|
||||
Padding = new MarginPadding
|
||||
{
|
||||
Top = vertical_padding,
|
||||
Bottom = vertical_padding,
|
||||
Left = horizontal_padding,
|
||||
Right = horizontal_padding,
|
||||
},
|
||||
Children = new Drawable[]
|
||||
{
|
||||
new FillFlowContainer
|
||||
|
@ -44,7 +44,11 @@ namespace osu.Game.Overlays.Direct
|
||||
public ResultCounts ResultCounts
|
||||
{
|
||||
get { return resultCounts; }
|
||||
set { resultCounts = value; updateResultCounts(); }
|
||||
set
|
||||
{
|
||||
resultCounts = value;
|
||||
updateResultCounts();
|
||||
}
|
||||
}
|
||||
|
||||
protected override bool InternalContains(Vector2 screenSpacePos) => base.InternalContains(screenSpacePos) || RankStatusDropdown.Contains(screenSpacePos);
|
||||
|
Loading…
Reference in New Issue
Block a user