Merge branch 'Tryibion-fix-shift-arrow-end'

This commit is contained in:
Wojtek Figat
2025-04-08 16:51:46 +02:00

View File

@@ -747,7 +747,7 @@ namespace FlaxEngine.GUI
{
SetSelection(SelectionRight);
}
else if (SelectionRight < TextLength)
else if (SelectionRight < TextLength || (_selectionEnd < _selectionStart && _selectionStart == TextLength))
{
int position;
if (ctrl)