mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
Result counts displaying
This commit is contained in:
@ -3,7 +3,6 @@
|
||||
|
||||
using System.Collections.Generic;
|
||||
using OpenTK;
|
||||
using osu.Framework.Allocation;
|
||||
using osu.Framework.Graphics;
|
||||
using osu.Framework.Graphics.Containers;
|
||||
using osu.Framework.Graphics.Sprites;
|
||||
@ -30,12 +29,18 @@ namespace osu.Game.Overlays
|
||||
var p = new List<DirectPanel>();
|
||||
|
||||
foreach (BeatmapSetInfo b in value)
|
||||
p.Add(new DirectGridPanel(b) { Width = 407 });
|
||||
p.Add(new DirectGridPanel(b) { Width = 400 });
|
||||
|
||||
panels.Children = p;
|
||||
}
|
||||
}
|
||||
|
||||
public ResultCounts ResultCounts
|
||||
{
|
||||
get { return filter.ResultCounts; }
|
||||
set { filter.ResultCounts = value; }
|
||||
}
|
||||
|
||||
public DirectOverlay()
|
||||
{
|
||||
RelativeSizeAxes = Axes.Both;
|
||||
|
Reference in New Issue
Block a user