Browse Source

[TextBox] fix double click on TextBox cannot select word on touch device (#15606)

* fix double click on TextBox cannot select word on touch device

* fix

* fix: double click and drag to change selection
pull/15640/head
ijklam 2 years ago
committed by GitHub
parent
commit
fd78546f49
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      src/Avalonia.Controls/TextBox.cs

2
src/Avalonia.Controls/TextBox.cs

@ -1650,7 +1650,7 @@ namespace Avalonia.Controls
if (Math.Abs(caretIndex - previousIndex) == 1)
e.PreventGestureRecognition();
if (e.Pointer.Type == PointerType.Mouse)
if (e.Pointer.Type == PointerType.Mouse || _isDoubleTapped)
{
var selectionStart = SelectionStart;
var selectionEnd = SelectionEnd;

Loading…
Cancel
Save