|
|
|
@ -1111,13 +1111,12 @@ class RenderEditableTextLine extends RenderEditableBox { |
|
|
|
|
// Paint a small rect at the start of empty lines that |
|
|
|
|
// are contained by the selection. |
|
|
|
|
if (line.isEmpty && |
|
|
|
|
textSelection.baseOffset <= line.offset && |
|
|
|
|
textSelection.extentOffset > line.offset |
|
|
|
|
) { |
|
|
|
|
textSelection.baseOffset <= line.offset && |
|
|
|
|
textSelection.extentOffset > line.offset) { |
|
|
|
|
final lineHeight = |
|
|
|
|
preferredLineHeight(TextPosition(offset: line.offset)); |
|
|
|
|
_selectedRects?.add( |
|
|
|
|
TextBox.fromLTRBD(0, 0, 3, lineHeight, textDirection)); |
|
|
|
|
preferredLineHeight(TextPosition(offset: line.offset)); |
|
|
|
|
_selectedRects |
|
|
|
|
?.add(TextBox.fromLTRBD(0, 0, 3, lineHeight, textDirection)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
_paintSelection(context, effectiveOffset); |
|
|
|
|