mirror of
https://github.com/osukey/osukey.git
synced 2025-07-19 01:09:59 +09:00
Remove string concatenation from ctor
This commit is contained in:
@ -25,7 +25,7 @@ namespace osu.Game.Tests.Visual.Online
|
|||||||
Child = new Container
|
Child = new Container
|
||||||
{
|
{
|
||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
Child = onlineView = new OnlineViewContainer(@"view dummy test content")
|
Child = onlineView = new OnlineViewContainer(@"Please sign in to view dummy test content")
|
||||||
{
|
{
|
||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
Children = new Drawable[]
|
Children = new Drawable[]
|
||||||
|
@ -40,7 +40,7 @@ namespace osu.Game.Online
|
|||||||
{
|
{
|
||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
Alpha = 0,
|
Alpha = 0,
|
||||||
Child = placeholder = new LoginPlaceholder($@"Please sign in to {placeholderMessage}")
|
Child = placeholder = new LoginPlaceholder(placeholderMessage)
|
||||||
},
|
},
|
||||||
loading = new LoadingAnimation
|
loading = new LoadingAnimation
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user