mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Fix alpha not being zero when string is set to empty and use inequality on supporter condition
Co-authored-by: Bartłomiej Dach <dach.bartlomiej@gmail.com>
This commit is contained in:
@ -67,7 +67,7 @@ namespace osu.Game.Overlays.Settings
|
||||
{
|
||||
set
|
||||
{
|
||||
noteText.Alpha = 1;
|
||||
noteText.Alpha = string.IsNullOrWhiteSpace(value) ? 0 : 1;
|
||||
noteText.Text = value;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user