Hide selection overlay for collapsed selection

pull/531/head
X Code 3 years ago
parent 263ee8face
commit a0f3830ad5
  1. 2
      lib/src/widgets/raw_editor.dart

@ -530,7 +530,7 @@ class RawEditorState extends EditorState
void _updateOrDisposeSelectionOverlayIfNeeded() {
if (_selectionOverlay != null) {
if (_hasFocus) {
if (_hasFocus && !textEditingValue.selection.isCollapsed) {
_selectionOverlay!.update(textEditingValue);
} else {
_selectionOverlay!.dispose();

Loading…
Cancel
Save