Skip to content

Commit 30ff4c7

Browse files
authored
Merge pull request #19690 from ramezgerges/last_trailing_space_click
fix(textbox): correctly set selection when clicking past the end in a TextBox that ends with spaces
2 parents faf5abd + fc0af45 commit 30ff4c7

File tree

2 files changed

+42
-1
lines changed

2 files changed

+42
-1
lines changed

src/Uno.UI.RuntimeTests/Tests/Windows_UI_Xaml_Controls/Given_TextBox.skia.cs

+36
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
using Color = Windows.UI.Color;
2222
using Point = Windows.Foundation.Point;
2323
using System.Runtime.InteropServices;
24+
using Windows.Foundation;
2425
using SamplesApp.UITests;
2526

2627
namespace Uno.UI.RuntimeTests.Tests.Windows_UI_Xaml_Controls
@@ -935,6 +936,41 @@ public async Task When_Pointer_Tap()
935936
Assert.AreEqual(0, SUT.SelectionLength);
936937
}
937938

939+
[TestMethod]
940+
public async Task When_Pointer_Tap_After_Ending_Spaces()
941+
{
942+
using var _ = new TextBoxFeatureConfigDisposable();
943+
944+
var SUT = new TextBox
945+
{
946+
Width = 350,
947+
Text = "Hello world ",
948+
FontFamily = "Arial" // no Segoe UI on Linux, so we set something common
949+
};
950+
951+
WindowHelper.WindowContent = SUT;
952+
953+
await WindowHelper.WaitForIdle();
954+
await WindowHelper.WaitForLoaded(SUT);
955+
956+
SUT.Focus(FocusState.Programmatic);
957+
await WindowHelper.WaitForIdle();
958+
959+
var injector = InputInjector.TryCreate() ?? throw new InvalidOperationException("Failed to init the InputInjector");
960+
using var mouse = injector.GetMouse();
961+
962+
var bounds = SUT.GetAbsoluteBounds();
963+
mouse.MoveTo(new Point(bounds.Right - 30, bounds.GetMidY()));
964+
await WindowHelper.WaitForIdle();
965+
966+
mouse.Press();
967+
mouse.Release();
968+
await WindowHelper.WaitForIdle();
969+
970+
Assert.AreEqual(SUT.Text.Length, SUT.SelectionStart);
971+
Assert.AreEqual(0, SUT.SelectionLength);
972+
}
973+
938974
[TestMethod]
939975
public async Task When_Pointer_Shift_Tap()
940976
{

src/Uno.UI/UI/Xaml/Documents/InlineCollection.skia.cs

+6-1
Original file line numberDiff line numberDiff line change
@@ -893,7 +893,12 @@ private int GetIndexAtUnadjusted(Point p, bool ignoreEndingSpace, bool extendedS
893893
characterCount++;
894894
}
895895

896-
if (ignoreEndingSpace && span == line.SegmentSpans[^1] && span.GlyphsStart + span.GlyphsLength > 0 && char.IsWhiteSpace(segment.Text[span.GlyphsStart + span.GlyphsLength - 1]))
896+
if (ignoreEndingSpace
897+
&& span == line.SegmentSpans[^1]
898+
&& line != _renderLines[^1]
899+
&& ((IBlock)_collection.GetParent()).TextWrapping != TextWrapping.NoWrap
900+
&& span.GlyphsStart + span.GlyphsLength > 0
901+
&& char.IsWhiteSpace(segment.Text[span.GlyphsStart + span.GlyphsLength - 1]))
897902
{
898903
// in cases like clicking at the end of a line that ends in a wrapping space, we actually want the character right before the space
899904
characterCount--;

0 commit comments

Comments
 (0)