mirror of
https://github.com/ppy/osu.git
synced 2025-01-13 13:32:54 +08:00
Remove redundant BindTarget usage
This commit is contained in:
parent
031f0ee1e7
commit
614e68cdf9
@ -49,7 +49,7 @@ namespace osu.Game.Overlays.Rankings
|
||||
{
|
||||
Anchor = Anchor.TopCentre,
|
||||
Origin = Anchor.TopCentre,
|
||||
Current = { BindTarget = Ruleset }
|
||||
Current = Ruleset
|
||||
},
|
||||
new Container
|
||||
{
|
||||
@ -76,14 +76,14 @@ namespace osu.Game.Overlays.Rankings
|
||||
new RankingsScopeSelector
|
||||
{
|
||||
Margin = new MarginPadding { Top = 10 },
|
||||
Current = { BindTarget = Scope }
|
||||
Current = Scope
|
||||
},
|
||||
new HeaderTitle
|
||||
{
|
||||
Anchor = Anchor.TopCentre,
|
||||
Origin = Anchor.TopCentre,
|
||||
Scope = { BindTarget = Scope },
|
||||
Margin = new MarginPadding { Top = 10 },
|
||||
Scope = { BindTarget = Scope },
|
||||
Country = { BindTarget = Country },
|
||||
},
|
||||
dropdownPlaceholder = new Container
|
||||
@ -97,7 +97,7 @@ namespace osu.Game.Overlays.Rankings
|
||||
Child = dropdown = new OsuDropdown<Spotlight>
|
||||
{
|
||||
RelativeSizeAxes = Axes.X,
|
||||
Current = { BindTarget = Spotlight },
|
||||
Current = Spotlight,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user