mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 10:33:30 +08:00
Remove string concatenation from ctor
This commit is contained in:
parent
6d51b344ab
commit
d3dc0b63ff
@ -25,7 +25,7 @@ namespace osu.Game.Tests.Visual.Online
|
||||
Child = new Container
|
||||
{
|
||||
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,
|
||||
Children = new Drawable[]
|
||||
|
@ -40,7 +40,7 @@ namespace osu.Game.Online
|
||||
{
|
||||
RelativeSizeAxes = Axes.Both,
|
||||
Alpha = 0,
|
||||
Child = placeholder = new LoginPlaceholder($@"Please sign in to {placeholderMessage}")
|
||||
Child = placeholder = new LoginPlaceholder(placeholderMessage)
|
||||
},
|
||||
loading = new LoadingAnimation
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user