diff --git a/osu.Game/Overlays/BeatmapListing/BeatmapSearchFilter.cs b/osu.Game/Overlays/BeatmapListing/BeatmapSearchFilter.cs index 6cd941495f..acae5ce117 100644 --- a/osu.Game/Overlays/BeatmapListing/BeatmapSearchFilter.cs +++ b/osu.Game/Overlays/BeatmapListing/BeatmapSearchFilter.cs @@ -87,11 +87,7 @@ namespace osu.Game.Overlays.BeatmapListing protected override void OnDeactivated() => updateState(); - private void updateState() - { - text.Font = text.Font.With(weight: Active.Value ? FontWeight.Medium : FontWeight.Regular); - text.FadeColour(Active.Value ? Color4.White : getStateColour(), 200, Easing.OutQuint); - } + private void updateState() => text.FadeColour(Active.Value ? Color4.White : getStateColour(), 200, Easing.OutQuint); private Color4 getStateColour() => IsHovered ? colourProvider.Light1 : colourProvider.Light3; }