Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Controls/src/Core/Element/Element.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1044,7 +1044,7 @@ void OnDescendantAdded(Element child)
OnDescendantAddedCore(child, null);
}

void OnDescendantAddedCore(Element child, ElementEventArgs? args)
void OnDescendantAddedCore(Element child, ElementEventArgs args)
{
if (DescendantAdded is not null)
{
Expand All @@ -1059,7 +1059,7 @@ void OnDescendantRemoved(Element child)
OnDescendantRemovedCore(child, null);
}

void OnDescendantRemovedCore(Element child, ElementEventArgs? args)
void OnDescendantRemovedCore(Element child, ElementEventArgs args)
{
if (DescendantRemoved is not null)
{
Expand Down
Loading