From 1b6859d1f387d84345ecde7086743fa2ace731c6 Mon Sep 17 00:00:00 2001 From: Ellet <73608287+freshtechtips@users.noreply.github.com> Date: Sat, 4 Nov 2023 05:16:48 +0300 Subject: [PATCH] Fix font color and background color icons is reversed --- CHANGELOG.md | 3 +++ lib/src/widgets/toolbar/buttons/color.dart | 2 +- pubspec.yaml | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 98fbda83..be38b060 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## [8.1.5] +- Background/Font Color toolbar button icons reversed. + ## [8.1.4] - Background/Font Color toolbar button tooltips reversed. diff --git a/lib/src/widgets/toolbar/buttons/color.dart b/lib/src/widgets/toolbar/buttons/color.dart index d481ae5c..9a0f0789 100644 --- a/lib/src/widgets/toolbar/buttons/color.dart +++ b/lib/src/widgets/toolbar/buttons/color.dart @@ -125,7 +125,7 @@ class _QuillToolbarColorButtonState extends State { IconData get iconData { return options.iconData ?? baseButtonExtraOptions.iconData ?? - (widget.isBackground ? Icons.color_lens : Icons.format_color_fill); + (widget.isBackground ? Icons.format_color_fill : Icons.color_lens); } String get tooltip { diff --git a/pubspec.yaml b/pubspec.yaml index 2aad9f3e..3d0bc8e4 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_quill description: A rich text editor built for the modern Android, iOS, web and desktop platforms. It is the WYSIWYG editor and a Quill component for Flutter. -version: 8.1.4 +version: 8.1.5 homepage: https://1o24bbs.com/c/bulletjournal/108 repository: https://github.com/singerdmx/flutter-quill