Skip to content

Commit

Permalink
No longer execute BDL continuations synchronously
Browse files Browse the repository at this point in the history
  • Loading branch information
smoogipoo committed Oct 24, 2024
1 parent 9c6705e commit 04f682f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osu.Framework/Graphics/Containers/CompositeDrawable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ protected internal Task LoadComponentsAsync<TLoadable>(IEnumerable<TLoadable> co
linkedSource.Dispose();
}
});
}, TaskContinuationOptions.ExecuteSynchronously);
}, CancellationToken.None); // Special cancellation handling during the continuation.
}

/// <summary>
Expand Down

0 comments on commit 04f682f

Please sign in to comment.