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 <santiagowmar@gmail.com>
pull/2120/head v10.2.1
Cat 8 months ago committed by GitHub
parent b894c5fdd6
commit dad352cbf2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      lib/src/editor/widgets/text/text_selection.dart

@ -433,7 +433,7 @@ class EditorTextSelectionOverlay {
context: context, context: context,
below: magnifierConfiguration.shouldDisplayHandlesInMagnifier below: magnifierConfiguration.shouldDisplayHandlesInMagnifier
? null ? null
: _handles![0], : _handles?.elementAtOrNull(0),
builder: (_) => builtMagnifier, builder: (_) => builtMagnifier,
); );
} }

Loading…
Cancel
Save