pull/1721/head
Carsten Seeger 1 year ago committed by X Code
parent ed514c02fb
commit 5d9dc102f1
  1. 4
      lib/src/widgets/raw_editor/raw_editor_state.dart

@ -1121,7 +1121,7 @@ class QuillRawEditorState extends EditorState
@override @override
void initState() { void initState() {
super.initState(); super.initState();
if (clipboardStatus != null) { if (_clipboardStatus != null) {
_clipboardStatus!.addListener(_onChangedClipboardStatus); _clipboardStatus!.addListener(_onChangedClipboardStatus);
} }
@ -1379,7 +1379,7 @@ class QuillRawEditorState extends EditorState
renderObject: renderEditor, renderObject: renderEditor,
selectionCtrls: widget.configurations.selectionCtrls, selectionCtrls: widget.configurations.selectionCtrls,
selectionDelegate: this, selectionDelegate: this,
//clipboardStatus: _clipboardStatus, clipboardStatus: _clipboardStatus,
contextMenuBuilder: widget.configurations.contextMenuBuilder == null contextMenuBuilder: widget.configurations.contextMenuBuilder == null
? null ? null
: (context) => : (context) =>

Loading…
Cancel
Save