Merge branch 'master' into better-notification-delays

This commit is contained in:
Dan Balasescu
2017-12-27 23:26:57 +09:00
committed by GitHub
38 changed files with 179 additions and 72 deletions

View File

@ -112,9 +112,12 @@ namespace osu.Game.Overlays
private void notificationClosed()
{
// hide ourselves if all notifications have been dismissed.
if (totalCount == 0)
State = Visibility.Hidden;
Schedule(() =>
{
// hide ourselves if all notifications have been dismissed.
if (totalCount == 0)
State = Visibility.Hidden;
});
updateCounts();
}