mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 22:56:36 +09:00
Use default colour in MetadataSection
This commit is contained in:
@ -160,7 +160,6 @@ namespace osu.Game.Screens.Select
|
||||
private void load(APIAccess api)
|
||||
{
|
||||
this.api = api;
|
||||
description.TextColour = source.TextColour = tags.TextColour = Color4.White.Opacity(0.75f);
|
||||
}
|
||||
|
||||
protected override void UpdateAfterChildren()
|
||||
@ -374,6 +373,12 @@ namespace osu.Game.Screens.Select
|
||||
get { return textFlow.Colour; }
|
||||
set { textFlow.Colour = value; }
|
||||
}
|
||||
|
||||
[BackgroundDependencyLoader]
|
||||
private void load()
|
||||
{
|
||||
textFlow.Colour = Color4.White.Opacity(0.75f);
|
||||
}
|
||||
}
|
||||
|
||||
private class DimmedLoadingAnimation : VisibilityContainer
|
||||
|
Reference in New Issue
Block a user