1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-20 21:52:57 +08:00

@"" -> string.Empty

This commit is contained in:
DrabWeb 2017-05-20 03:22:37 -03:00
parent bfedd42ca4
commit 995a573b9c

View File

@ -33,7 +33,7 @@ namespace osu.Game.Overlays.Mods
public Action<Mod> Action; // Passed the selected mod or null if none
public string TooltipText => (SelectedMod?.Description ?? Mods.FirstOrDefault()?.Description) ?? @"";
public string TooltipText => (SelectedMod?.Description ?? Mods.FirstOrDefault()?.Description) ?? string.Empty;
private int _selectedIndex = -1;
private int selectedIndex