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

pull/2116/head
CatHood0 8 months ago
parent 62d53cc2af
commit 430bfd7c7e
  1. 3
      lib/src/editor/raw_editor/raw_editor_state.dart

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

Loading…
Cancel
Save