mirror of
https://github.com/ppy/osu.git
synced 2024-11-14 17:17:24 +08:00
Apply suggested change
This commit is contained in:
parent
ffbab25358
commit
5c4dfe0809
@ -68,6 +68,8 @@ namespace osu.Game.Overlays.Changelog
|
|||||||
|
|
||||||
foreach (APIChangelogEntry entry in categoryEntries)
|
foreach (APIChangelogEntry entry in categoryEntries)
|
||||||
{
|
{
|
||||||
|
var entryColour = entry.Major ? colours.YellowLight : Color4.White;
|
||||||
|
|
||||||
LinkFlowContainer title;
|
LinkFlowContainer title;
|
||||||
|
|
||||||
Container titleContainer = new Container
|
Container titleContainer = new Container
|
||||||
@ -75,17 +77,9 @@ namespace osu.Game.Overlays.Changelog
|
|||||||
AutoSizeAxes = Axes.Y,
|
AutoSizeAxes = Axes.Y,
|
||||||
RelativeSizeAxes = Axes.X,
|
RelativeSizeAxes = Axes.X,
|
||||||
Margin = new MarginPadding { Vertical = 5 },
|
Margin = new MarginPadding { Vertical = 5 },
|
||||||
Child = title = new LinkFlowContainer
|
Children = new Drawable[]
|
||||||
{
|
{
|
||||||
Direction = FillDirection.Full,
|
new SpriteIcon
|
||||||
RelativeSizeAxes = Axes.X,
|
|
||||||
AutoSizeAxes = Axes.Y,
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
var entryColour = entry.Major ? colours.YellowLight : Color4.White;
|
|
||||||
|
|
||||||
titleContainer.Add(new SpriteIcon
|
|
||||||
{
|
{
|
||||||
Anchor = Anchor.CentreLeft,
|
Anchor = Anchor.CentreLeft,
|
||||||
Origin = Anchor.CentreRight,
|
Origin = Anchor.CentreRight,
|
||||||
@ -93,7 +87,15 @@ namespace osu.Game.Overlays.Changelog
|
|||||||
Icon = entry.Type == ChangelogEntryType.Fix ? FontAwesome.Solid.Check : FontAwesome.Solid.Plus,
|
Icon = entry.Type == ChangelogEntryType.Fix ? FontAwesome.Solid.Check : FontAwesome.Solid.Plus,
|
||||||
Colour = entryColour,
|
Colour = entryColour,
|
||||||
Margin = new MarginPadding { Right = 5 },
|
Margin = new MarginPadding { Right = 5 },
|
||||||
});
|
},
|
||||||
|
title = new LinkFlowContainer
|
||||||
|
{
|
||||||
|
Direction = FillDirection.Full,
|
||||||
|
RelativeSizeAxes = Axes.X,
|
||||||
|
AutoSizeAxes = Axes.Y,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
title.AddText(entry.Title, t =>
|
title.AddText(entry.Title, t =>
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user