1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 09:32:55 +08:00

Fix unread light not turning off

This commit is contained in:
Dean Herbert 2017-12-26 15:48:01 +09:00
parent 6c6704e6a6
commit ed1df94f77
2 changed files with 4 additions and 2 deletions

View File

@ -261,4 +261,4 @@ namespace osu.Game.Overlays.Notifications
}
}
}
}
}

View File

@ -83,8 +83,10 @@ namespace osu.Game.Overlays.Notifications
set
{
if (value == base.Read) return;
base.Read = value;
Light.FadeTo(value ? 1 : 0, 100);
Light.FadeTo(value ? 0 : 1, 100);
}
}
}