From b894c5fdd68339188a26638efc18a7270ed30176 Mon Sep 17 00:00:00 2001 From: Cat <114286961+CatHood0@users.noreply.github.com> Date: Sat, 17 Aug 2024 10:44:49 -0400 Subject: [PATCH] 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 --- lib/src/editor/raw_editor/raw_editor_state.dart | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/src/editor/raw_editor/raw_editor_state.dart b/lib/src/editor/raw_editor/raw_editor_state.dart index f9b3bc21..fbb6b152 100644 --- a/lib/src/editor/raw_editor/raw_editor_state.dart +++ b/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) {