diff --git a/osu.Game/Beatmaps/Drawables/DifficultyIcon.cs b/osu.Game/Beatmaps/Drawables/DifficultyIcon.cs
index 03ff0b29b0..679e9c3665 100644
--- a/osu.Game/Beatmaps/Drawables/DifficultyIcon.cs
+++ b/osu.Game/Beatmaps/Drawables/DifficultyIcon.cs
@@ -55,7 +55,7 @@ namespace osu.Game.Beatmaps.Drawables
private IRulesetStore rulesets { get; set; } = null!;
///
- /// Creates a new with a tooltip. Will use provided beatmap's for initial value.
+ /// Creates a new . Will use provided beatmap's for initial value.
///
/// The beatmap to be displayed in the tooltip, and to be used for the initial star rating value.
/// An optional ruleset to be used for the icon display, in place of the beatmap's ruleset.
@@ -67,7 +67,7 @@ namespace osu.Game.Beatmaps.Drawables
}
///
- /// Creates a new with no tooltip.
+ /// Creates a new without an associated beatmap.
///
/// The ruleset to be used for the icon display.
public DifficultyIcon(IRulesetInfo ruleset)
diff --git a/osu.Game/Overlays/BeatmapSet/BeatmapPicker.cs b/osu.Game/Overlays/BeatmapSet/BeatmapPicker.cs
index 2efdb71204..1a57a89957 100644
--- a/osu.Game/Overlays/BeatmapSet/BeatmapPicker.cs
+++ b/osu.Game/Overlays/BeatmapSet/BeatmapPicker.cs
@@ -274,8 +274,9 @@ namespace osu.Game.Overlays.BeatmapSet
Alpha = 0.5f
}
},
- icon = new DifficultyIcon(beatmapInfo.Ruleset)
+ icon = new DifficultyIcon(beatmapInfo)
{
+ ShowTooltip = false,
Current = { Value = new StarDifficulty(beatmapInfo.StarRating, 0) },
Anchor = Anchor.Centre,
Origin = Anchor.Centre,