Skip to content

Commit c7158b5

Browse files
Upgrade to 2.0.10
1 parent aea3159 commit c7158b5

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## [2.0.10]
2+
* cursorConnt.color notify the text_line to repaint if it was disposed.
3+
14
## [2.0.9]
25
* Improve UX when trying to add a link.
36

lib/src/widgets/text_line.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -886,10 +886,10 @@ class RenderEditableTextLine extends RenderEditableBox {
886886

887887
void safeMarkNeedsPaint() {
888888
if (!attached) {
889-
//Should not paint if it was unattach.
889+
//Should not paint if it was unattached.
890890
return;
891891
}
892-
safeMarkNeedsPaint();
892+
markNeedsPaint();
893893
}
894894
}
895895

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_quill
22
description: A rich text editor supporting mobile and web (Demo App @ bulletjournal.us)
3-
version: 2.0.9
3+
version: 2.0.10
44
#author: bulletjournal
55
homepage: https://bulletjournal.us/home/index.html
66
repository: https://github.com/singerdmx/flutter-quill

0 commit comments

Comments
 (0)