Merge branch 'master' into notification-verbosity

This commit is contained in:
Dean Herbert
2017-12-26 20:48:59 +09:00
committed by GitHub
43 changed files with 543 additions and 273 deletions

View File

@ -95,7 +95,7 @@ namespace osu.Game.Overlays.Notifications
protected virtual void Completed()
{
Expire();
base.Close();
CompletionTarget?.Invoke(CreateCompletionNotification());
}

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);
}
}
}