Upgrade to 7.1.14

pull/1198/head
Cheryl 2 years ago
parent 89b06c07e9
commit 8a4a980d6a
  1. 3
      CHANGELOG.md
  2. 3
      lib/src/widgets/controller.dart
  3. 2
      pubspec.yaml

@ -1,3 +1,6 @@
# [7.1.14]
- Add indents change for multiline selection.
# [7.1.13]
- Add custom recognizer.

@ -138,7 +138,8 @@ class QuillController extends ChangeNotifier {
final formatLength = math.min(
style.offset + (style.length ?? 0),
selection.end,
) - style.offset;
) -
style.offset;
Attribute? formatAttribute;
if (indent == null) {
if (isIncrease) {

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

Loading…
Cancel
Save