1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 18:07:23 +08:00

Fix mixed [cC]urrent usage

This commit is contained in:
Bartłomiej Dach 2023-07-13 22:00:21 +02:00
parent 3ca767b7a2
commit 9cc2150b5a
No known key found for this signature in database

View File

@ -121,7 +121,7 @@ namespace osu.Game.Overlays
Enabled.Value = !current.Disabled;
this.FadeTo(current.Disabled ? 0.2f : (Current.IsDefault ? 0 : 1), fade_duration, Easing.OutQuint);
this.FadeTo(current.Disabled ? 0.2f : (current.IsDefault ? 0 : 1), fade_duration, Easing.OutQuint);
if (IsHovered && Enabled.Value)
{