From 5d9dc102f17b5b7a9fe19505ad0264fd24d85040 Mon Sep 17 00:00:00 2001 From: Carsten Seeger Date: Mon, 5 Feb 2024 12:12:32 +0100 Subject: [PATCH] fix: typo --- lib/src/widgets/raw_editor/raw_editor_state.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/src/widgets/raw_editor/raw_editor_state.dart b/lib/src/widgets/raw_editor/raw_editor_state.dart index 527eb0b2..bc19f1b0 100644 --- a/lib/src/widgets/raw_editor/raw_editor_state.dart +++ b/lib/src/widgets/raw_editor/raw_editor_state.dart @@ -1121,7 +1121,7 @@ class QuillRawEditorState extends EditorState @override void initState() { super.initState(); - if (clipboardStatus != null) { + if (_clipboardStatus != null) { _clipboardStatus!.addListener(_onChangedClipboardStatus); } @@ -1379,7 +1379,7 @@ class QuillRawEditorState extends EditorState renderObject: renderEditor, selectionCtrls: widget.configurations.selectionCtrls, selectionDelegate: this, - //clipboardStatus: _clipboardStatus, + clipboardStatus: _clipboardStatus, contextMenuBuilder: widget.configurations.contextMenuBuilder == null ? null : (context) =>