Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Proton/Sources/Swift/Core/RichTextView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -829,7 +829,11 @@ class RichTextView: AutogrowingTextView {
}

override func caretRect(for position: UITextPosition) -> CGRect {
guard isEditable else {
// layoutManager.numberOfGlyphs check is required to prevent cases where selectedRange is accessed
// while TextProcessor is processing and contents are changed to prevent a crash that may result when
// this is not same as textStorage.length
guard isEditable,
layoutManager.numberOfGlyphs == textStorage.length else {
return super.caretRect(for: position)
}

Expand Down