Skip to content

Commit

Permalink
#17675 - AfterPlatformServicesSetup callbacks are not called by the A…
Browse files Browse the repository at this point in the history
…fterApplicationSetup callbacks anymore (#17676)
  • Loading branch information
gentledepp authored Dec 3, 2024
1 parent f4633e2 commit 7210eff
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 7210eff

Please sign in to comment.