Update usages of IsAlive/IsLoaded in line with framework changes

This commit is contained in:
Dean Herbert
2017-08-14 11:03:03 +09:00
parent 384b8c0600
commit 97ac8e1a64
4 changed files with 4 additions and 4 deletions

View File

@ -68,7 +68,7 @@ namespace osu.Desktop.Tests.Visual
while (progressingNotifications.Count(n => n.State == ProgressNotificationState.Active) < 3)
{
var p = progressingNotifications.FirstOrDefault(n => n.IsLoaded && n.State == ProgressNotificationState.Queued);
var p = progressingNotifications.FirstOrDefault(n => n.IsAlive && n.State == ProgressNotificationState.Queued);
if (p == null)
break;