1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 14:53:01 +08:00

Fix options dropdown labels never being displayed.

This commit is contained in:
Dean Herbert 2017-05-02 18:35:23 +09:00
parent 1b0f353af3
commit 57c2dd1f49

View File

@ -24,6 +24,7 @@ namespace osu.Game.Overlays.Options
set
{
text.Text = value;
text.Alpha = !string.IsNullOrEmpty(value) ? 1 : 0;
}
}