Skip to content

Commit 76ef63e

Browse files
committed
Upgrade to 1.3.3
1 parent e69e974 commit 76ef63e

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## [1.3.3]
2+
* Upgrade file_picker version.
3+
14
## [1.3.2]
25
* Fix copy/paste bug.
36

lib/src/widgets/text_line.dart

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,7 @@ class TextLine extends StatelessWidget {
4141
// newline, which is unexpected and probably we should find out the
4242
// root cause
4343
final childCount = line.childCount;
44-
if (line.hasEmbed ||
45-
(childCount > 1 && line.children.first is Embed))
46-
{
44+
if (line.hasEmbed || (childCount > 1 && line.children.first is Embed)) {
4745
final embed = line.children.first as Embed;
4846
return EmbedProxy(embedBuilder(context, embed));
4947
}

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: 1.3.2
3+
version: 1.3.3
44
#author: bulletjournal
55
homepage: https://bulletjournal.us/home/index.html
66
repository: https://github.com/singerdmx/flutter-quill

0 commit comments

Comments
 (0)