From 7033d80584103d1d0f4cb8277df65c8f3babf48d Mon Sep 17 00:00:00 2001 From: Michael Allen Date: Sat, 21 Oct 2023 12:19:01 -0700 Subject: [PATCH] Allow QuillProvider to rebuild w/o exception (#1448) --- lib/src/widgets/utils/provider.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/widgets/utils/provider.dart b/lib/src/widgets/utils/provider.dart index 1835bc87..0cfcc926 100644 --- a/lib/src/widgets/utils/provider.dart +++ b/lib/src/widgets/utils/provider.dart @@ -18,7 +18,7 @@ class QuillProvider extends InheritedWidget { @override bool updateShouldNotify(covariant InheritedWidget oldWidget) { - throw false; + return true; } static QuillProvider? of(BuildContext context) {