From 2799a2a5c8f2e5a12827c36607258873256dd8d7 Mon Sep 17 00:00:00 2001 From: StanR Date: Thu, 21 Jul 2022 04:59:52 +0300 Subject: [PATCH] Better beatmap name --- PerformanceCalculatorGUI/Components/BeatmapCard.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/PerformanceCalculatorGUI/Components/BeatmapCard.cs b/PerformanceCalculatorGUI/Components/BeatmapCard.cs index 30e9a98..f0fc0f8 100644 --- a/PerformanceCalculatorGUI/Components/BeatmapCard.cs +++ b/PerformanceCalculatorGUI/Components/BeatmapCard.cs @@ -74,8 +74,7 @@ namespace PerformanceCalculatorGUI.Components Anchor = Anchor.Centre, Origin = Anchor.Centre, Font = OsuFont.GetFont(size: 16, weight: FontWeight.Bold), - Shadow = false, - Text = beatmap.Metadata.GetDisplayTitle(), + Text = $"[{beatmap.BeatmapInfo.Ruleset.Name}] {beatmap.Metadata.GetDisplayTitle()} [{beatmap.BeatmapInfo.DifficultyName}]", Margin = new MarginPadding(10) } });