mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 09:32:55 +08:00
simplify moving condition
This commit is contained in:
parent
3fde4efaee
commit
ffcc1c62af
@ -71,15 +71,7 @@ namespace osu.Game.Overlays.Toolbar
|
|||||||
// Scheduled to allow the flow layout to be computed before the line position is updated
|
// Scheduled to allow the flow layout to be computed before the line position is updated
|
||||||
private void moveLineToCurrent() => ScheduleAfterChildren(() =>
|
private void moveLineToCurrent() => ScheduleAfterChildren(() =>
|
||||||
{
|
{
|
||||||
foreach (var tabItem in TabContainer)
|
ModeButtonLine.MoveToX(SelectedTab.DrawPosition.X, !hasInitialPosition ? 0 : 200, Easing.OutQuint);
|
||||||
{
|
|
||||||
if (tabItem.Value.Equals(Current.Value))
|
|
||||||
{
|
|
||||||
ModeButtonLine.MoveToX(tabItem.DrawPosition.X, !hasInitialPosition ? 0 : 200, Easing.OutQuint);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
hasInitialPosition = true;
|
hasInitialPosition = true;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user