pull/1719/head
Carsten Seeger 1 year ago
parent 504fb532ef
commit 5ee0825e24
  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