From a1be256ff94de5d2ba352a138d01541068edc3e8 Mon Sep 17 00:00:00 2001 From: li3317 Date: Thu, 20 Jan 2022 15:27:24 -0500 Subject: [PATCH] fix launch link and upgrade --- CHANGELOG.md | 3 +++ lib/src/widgets/text_line.dart | 2 +- pubspec.yaml | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) 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