diff --git a/CHANGELOG.md b/CHANGELOG.md index 50d88e6e..0deada4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# [3.4.2] +* Fix launch link edit mode. + # [3.4.1] * Placeholder effective in scrollable. diff --git a/lib/src/widgets/text_line.dart b/lib/src/widgets/text_line.dart index 92e22841..1e44669c 100644 --- a/lib/src/widgets/text_line.dart +++ b/lib/src/widgets/text_line.dart @@ -402,7 +402,7 @@ class _TextLineState extends State { } void _tapLink(String? link) { - if (!widget.readOnly || link == null) { + if (link == null) { return; } diff --git a/pubspec.yaml b/pubspec.yaml index f2fce561..92948410 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_quill description: A rich text editor supporting mobile and web (Demo App @ bulletjournal.us) -version: 3.4.1 +version: 3.4.2 #author: bulletjournal homepage: https://bulletjournal.us/home/index.html repository: https://github.com/singerdmx/flutter-quill