Fix: context menu is visible even when selection is collapsed (#2116)

* Fix: context menu is visible even when selection is collapse

* Chore: dart fixes

* Fix: context menu fails by null value when try to update the view

---------

Co-authored-by: CatHood0 <santiagowmar@gmail.com>
pull/2120/head
Cat 8 months ago committed by GitHub
parent 2342509737
commit b894c5fdd6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 5
      lib/src/editor/raw_editor/raw_editor_state.dart

@ -1419,7 +1419,10 @@ class QuillRawEditorState extends EditorState
void _updateOrDisposeSelectionOverlayIfNeeded() {
if (_selectionOverlay != null) {
if (_hasFocus) {
if (!_hasFocus || textEditingValue.selection.isCollapsed) {
_selectionOverlay?.dispose();
_selectionOverlay = null;
} else if (_hasFocus) {
_selectionOverlay!.update(textEditingValue);
}
} else if (_hasFocus) {

Loading…
Cancel
Save