mirror of https://github.com/ppy/osu
Minor adjustments
This commit is contained in:
parent
8f59cb7659
commit
21e5ae5ba9
|
@ -1,13 +1,11 @@
|
||||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||||
// See the LICENCE file in the repository root for full licence text.
|
// See the LICENCE file in the repository root for full licence text.
|
||||||
|
|
||||||
#nullable disable
|
|
||||||
|
|
||||||
using osu.Framework.Bindables;
|
using osu.Framework.Bindables;
|
||||||
using osu.Game.Localisation;
|
|
||||||
using osu.Game.Resources.Localisation.Web;
|
|
||||||
using osu.Framework.Graphics;
|
using osu.Framework.Graphics;
|
||||||
using osu.Game.Graphics;
|
using osu.Game.Graphics;
|
||||||
|
using osu.Game.Localisation;
|
||||||
|
using osu.Game.Resources.Localisation.Web;
|
||||||
using osu.Game.Rulesets;
|
using osu.Game.Rulesets;
|
||||||
using osu.Game.Users;
|
using osu.Game.Users;
|
||||||
|
|
||||||
|
@ -19,8 +17,8 @@ public partial class RankingsOverlayHeader : TabControlOverlayHeader<RankingsSco
|
||||||
|
|
||||||
public Bindable<CountryCode> Country => countryFilter.Current;
|
public Bindable<CountryCode> Country => countryFilter.Current;
|
||||||
|
|
||||||
private OverlayRulesetSelector rulesetSelector;
|
private OverlayRulesetSelector rulesetSelector = null!;
|
||||||
private CountryFilter countryFilter;
|
private CountryFilter countryFilter = null!;
|
||||||
|
|
||||||
protected override OverlayTitle CreateTitle() => new RankingsTitle();
|
protected override OverlayTitle CreateTitle() => new RankingsTitle();
|
||||||
|
|
||||||
|
@ -46,8 +44,23 @@ protected override void LoadComplete()
|
||||||
|
|
||||||
Current.BindValueChanged(scope =>
|
Current.BindValueChanged(scope =>
|
||||||
{
|
{
|
||||||
rulesetSelector.FadeTo(scope.NewValue <= RankingsScope.Country ? 1 : 0, 200, Easing.OutQuint);
|
rulesetSelector.FadeTo(showRulesetSelector(scope.NewValue) ? 1 : 0, 200, Easing.OutQuint);
|
||||||
});
|
}, true);
|
||||||
|
|
||||||
|
bool showRulesetSelector(RankingsScope scope)
|
||||||
|
{
|
||||||
|
switch (scope)
|
||||||
|
{
|
||||||
|
case RankingsScope.Performance:
|
||||||
|
case RankingsScope.Spotlights:
|
||||||
|
case RankingsScope.Score:
|
||||||
|
case RankingsScope.Country:
|
||||||
|
return true;
|
||||||
|
|
||||||
|
default:
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue