removing parameter name abbreviations

This commit is contained in:
Jeremiah DECOMBE
2023-01-24 00:36:38 +01:00
parent b573e42cc2
commit c1876aac88

View File

@ -127,18 +127,18 @@ namespace osu.Game.Screens.Select
private Bindable<float> backgroundBlurLevel { get; set; } = new BindableFloat(); private Bindable<float> backgroundBlurLevel { get; set; } = new BindableFloat();
private void applyBackgroundBlur(float v) private void applyBackgroundBlur(float blurLevel)
{ {
ApplyToBackground(background => ApplyToBackground(background =>
{ {
background.IgnoreUserSettings.Value = true; background.IgnoreUserSettings.Value = true;
background.BlurAmount.Value = v * BACKGROUND_BLUR; background.BlurAmount.Value = blurLevel * BACKGROUND_BLUR;
}); });
} }
private void applyBackgroundBlur(ValueChangedEvent<float> v) private void applyBackgroundBlur(ValueChangedEvent<float> blurLevelValueChange)
{ {
applyBackgroundBlur(v.NewValue); applyBackgroundBlur(blurLevelValueChange.NewValue);
} }
[BackgroundDependencyLoader(true)] [BackgroundDependencyLoader(true)]