Fix for selection handles behaviour and unnessesary style assert (#1727)

pull/1738/head
xurc 1 year ago committed by GitHub
parent 95a4442c47
commit 53c5d304fd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 7
      lib/src/models/documents/nodes/leaf.dart
  2. 9
      lib/src/widgets/others/text_selection.dart
  3. 1
      lib/src/widgets/raw_editor/raw_editor_state.dart

@ -26,13 +26,6 @@ abstract base class Leaf extends Node {
Object get value => _value;
Object _value;
@override
void applyStyle(Style value) {
assert(value.isInline || value.isIgnored || value.isEmpty,
'Unable to apply Style to leaf: $value');
super.applyStyle(value);
}
@override
Line? get parent => super.parent as Line?;

@ -308,10 +308,13 @@ class EditorTextSelectionOverlay {
)
: null;
update(value.copyWith(
selection: currSelection,
composing: TextRange.empty,
));
selectionDelegate
..userUpdateTextEditingValue(
value.copyWith(selection: currSelection, composing: TextRange.empty),
SelectionChangedCause.drag)
..userUpdateTextEditingValue(value, SelectionChangedCause.drag)
..bringIntoView(textPosition);
}

@ -133,6 +133,7 @@ class QuillRawEditorState extends EditorState
if (cause == SelectionChangedCause.toolbar) {
bringIntoView(textEditingValue.selection.extent);
hideToolbar();
// Collapse the selection and hide the toolbar and handles.
userUpdateTextEditingValue(

Loading…
Cancel
Save