1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-23 06:59:53 +08:00

Fix labelled drawable descriptions not showing

This commit is contained in:
Bartłomiej Dach
2021-11-04 21:38:01 +01:00
Unverified
parent 9246adc349
commit 4c8d6a77be
@@ -168,7 +168,7 @@ namespace osu.Game.Graphics.UserInterfaceV2
{
descriptionText.Text = value;
if (value == default)
if (!string.IsNullOrEmpty(value.ToString()))
descriptionText.Show();
else
descriptionText.Hide();