Skip to content

Commit

Permalink
Merge pull request #599 from xfvvvv/patch-1
Browse files Browse the repository at this point in the history
Fix onTextSelection and onEndTextSelection stack overflow issue
  • Loading branch information
neuecc committed Jul 1, 2024
2 parents fbe0bf8 + 222b140 commit 4eee2c9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ public TextSelectionEventConverter(UnityEvent<string, int, int> unityEvent)

void InvokeCore(string item1, int item2, int item3)
{
innerEvent.Invoke(item1, item2, item3);
Invoke((item1, item2, item3));
}

public void Dispose()
Expand Down Expand Up @@ -855,4 +855,4 @@ public UniTask DisposeAsync()
}
}

#endif
#endif

0 comments on commit 4eee2c9

Please sign in to comment.