Upgrade to 7.0.4

pull/1151/head
X Code 2 years ago
parent 5b482e0668
commit 2c0a21a638
  1. 3
      CHANGELOG.md
  2. 11
      lib/src/widgets/text_line.dart
  3. 2
      pubspec.yaml

@ -1,3 +1,6 @@
# [7.0.4]
* Have text selection span full line height for uneven sized text.
# [7.0.3]
* Fix ordered list numeration for lists with more than one level of list.

@ -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);

@ -1,6 +1,6 @@
name: flutter_quill
description: A rich text editor supporting mobile and web (Demo App @ bulletjournal.us)
version: 7.0.3
version: 7.0.4
#author: bulletjournal
homepage: https://bulletjournal.us/home/index.html
repository: https://github.com/singerdmx/flutter-quill

Loading…
Cancel
Save