Revert some more instances of 'e' variable names

This commit is contained in:
Dean Herbert
2019-02-22 20:13:38 +09:00
parent 999b36ad17
commit 367bc53a06
50 changed files with 99 additions and 99 deletions

View File

@ -64,11 +64,11 @@ namespace osu.Game.Rulesets.Mania.UI.Components
};
direction.BindTo(scrollingInfo.Direction);
direction.BindValueChanged(e =>
direction.BindValueChanged(dir =>
{
gradient.Colour = ColourInfo.GradientVertical(
e.NewValue == ScrollingDirection.Up ? Color4.Black : Color4.Black.Opacity(0),
e.NewValue == ScrollingDirection.Up ? Color4.Black.Opacity(0) : Color4.Black);
dir.NewValue == ScrollingDirection.Up ? Color4.Black : Color4.Black.Opacity(0),
dir.NewValue == ScrollingDirection.Up ? Color4.Black.Opacity(0) : Color4.Black);
}, true);
}