Skip to content

Commit

Permalink
Fix broken pre-edit markedText on iOS and solve #17523 (#17618)
Browse files Browse the repository at this point in the history
* fix: add missing  ref keyword to CombinedSpan3.CopyFromSpan

* fix: fix incorrect indent in IUITextInput.TextInRange and boundary condition for surroundingText

---------

Co-authored-by: Max Katz <[email protected]>
  • Loading branch information
Arktische and maxkatz6 authored Dec 3, 2024
1 parent 9ef11b0 commit 44a6f91
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/iOS/Avalonia.iOS/CombinedSpan3.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public CombinedSpan3(ReadOnlySpan<T> span1, ReadOnlySpan<T> span2, ReadOnlySpan<

public int Length => Span1.Length + Span2.Length + Span3.Length;

static void CopyFromSpan(ReadOnlySpan<T> from, int offset, ref Span<T> to)
static void CopyFromSpan(ReadOnlySpan<T> from, ref int offset, ref Span<T> to)
{
if(to.Length == 0)
return;
Expand All @@ -33,8 +33,8 @@ static void CopyFromSpan(ReadOnlySpan<T> from, int offset, ref Span<T> to)

public void CopyTo(Span<T> to, int offset)
{
CopyFromSpan(Span1, offset, ref to);
CopyFromSpan(Span2, offset, ref to);
CopyFromSpan(Span3, offset, ref to);
CopyFromSpan(Span1, ref offset, ref to);
CopyFromSpan(Span2, ref offset, ref to);
CopyFromSpan(Span3, ref offset, ref to);
}
}
4 changes: 3 additions & 1 deletion src/iOS/Avalonia.iOS/TextInputResponder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -220,15 +220,17 @@ string IUITextInput.TextInRange(UITextRange range)

string result = "";
if (string.IsNullOrEmpty(_markedText))
{
if(surroundingText != null && r.EndIndex < surroundingText.Length)
{
result = surroundingText[r.StartIndex..r.EndIndex];
}
}
else
{
var span = new CombinedSpan3<char>(surroundingText.AsSpan().Slice(0, currentSelection.Start),
_markedText,
surroundingText.AsSpan().Slice(currentSelection.Start));
surroundingText.AsSpan().Slice(currentSelection.Start, currentSelection.End - currentSelection.Start));
var buf = new char[r.EndIndex - r.StartIndex];
span.CopyTo(buf, r.StartIndex);
result = new string(buf);
Expand Down

0 comments on commit 44a6f91

Please sign in to comment.