Fix activation not firing with refactors

This commit is contained in:
Dean Herbert
2022-09-12 15:04:30 +09:00
parent 60b0b909a5
commit 9b31aa6d7a
2 changed files with 10 additions and 3 deletions

View File

@ -110,7 +110,7 @@ namespace osu.Game.Updater
}
}
protected class UpdateApplicationCompleteNotification : ProgressCompletionNotification
public class UpdateApplicationCompleteNotification : ProgressCompletionNotification
{
public UpdateApplicationCompleteNotification()
{
@ -120,7 +120,10 @@ namespace osu.Game.Updater
public class UpdateProgressNotification : ProgressNotification
{
protected override Notification CreateCompletionNotification() => new UpdateApplicationCompleteNotification();
protected override Notification CreateCompletionNotification() => new UpdateApplicationCompleteNotification
{
Activated = CompletionClickAction
};
[BackgroundDependencyLoader]
private void load()