From dad352cbf2a200de77d02756129c92bed3c0e246 Mon Sep 17 00:00:00 2001 From: Cat <114286961+CatHood0@users.noreply.github.com> Date: Sat, 17 Aug 2024 10:45:02 -0400 Subject: [PATCH] Fix: unsafe operation while getting overlayEntry in text_selection (#2117) * Fix: unsafe operation while getting a overlay entry in text selection * Chore: dart format --------- Co-authored-by: CatHood0 --- lib/src/editor/widgets/text/text_selection.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/editor/widgets/text/text_selection.dart b/lib/src/editor/widgets/text/text_selection.dart index 3e83d00e..a22d8c55 100644 --- a/lib/src/editor/widgets/text/text_selection.dart +++ b/lib/src/editor/widgets/text/text_selection.dart @@ -433,7 +433,7 @@ class EditorTextSelectionOverlay { context: context, below: magnifierConfiguration.shouldDisplayHandlesInMagnifier ? null - : _handles![0], + : _handles?.elementAtOrNull(0), builder: (_) => builtMagnifier, ); }