Skip to content

Commit

Permalink
AvaloniaUI#17675 - AfterPlatformServicesSetup callbacks are not calle…
Browse files Browse the repository at this point in the history
…d by the AfterApplicationSetup callbacks anymore
  • Loading branch information
gentledepp committed Dec 3, 2024
1 parent f4633e2 commit bca1c73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Avalonia.Controls/AppBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ public AppBuilder AfterSetup(Action<AppBuilder> callback)
[PrivateApi]
public AppBuilder AfterApplicationSetup(Action<AppBuilder> callback)
{
AfterApplicationSetupCallback = (Action<AppBuilder>)Delegate.Combine(AfterPlatformServicesSetupCallback, callback);
AfterApplicationSetupCallback = (Action<AppBuilder>)Delegate.Combine(AfterApplicationSetupCallback, callback);
return Self;
}

Expand Down

0 comments on commit bca1c73

Please sign in to comment.