fixed: scrolling glitch

This commit is contained in:
daboe01
2026-06-16 07:16:14 +02:00
parent 4aaa32833a
commit 77433a3a1c
+3
View File
@@ -1660,7 +1660,10 @@ Sets the selection to a range of characters in response to user action.
- (void)moveRight:(id)sender
{
if ([self isSelectable])
{
[self _establishSelection:CPMakeRange(CPMaxRange(_selectionRange) + (_selectionRange.length ? 0 : 1), 0) byExtending:NO];
[self scrollRangeToVisible:_selectionRange];
}
}
- (void)_deleteForRange:(CPRange)changedRange