Skip to content

Commit

Permalink
Demo-site: changing signature of onChange to reflect actual values
Browse files Browse the repository at this point in the history
  • Loading branch information
K0369 committed Oct 22, 2023
1 parent 95a9734 commit f1032af
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ private void OnLinkAdded(BaseLinkModel link)
link.TargetChanged += OnLinKTargetChanged;
}

private void OnLinKTargetChanged(BaseLinkModel link, Anchor? oldTarget, Anchor? newTarget)
private void OnLinKTargetChanged(BaseLinkModel link, Anchor oldTarget, Anchor newTarget)
{
// only refresh on the first time the link is attached
if (oldTarget is PositionAnchor
Expand Down

0 comments on commit f1032af

Please sign in to comment.