From ed514c02fb2ddb7a53bb9e4c4448985fa646d70e Mon Sep 17 00:00:00 2001 From: Carsten Seeger Date: Mon, 5 Feb 2024 12:08:55 +0100 Subject: [PATCH] fix: outcommented clipboard status --- .../widgets/raw_editor/raw_editor_state.dart | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/lib/src/widgets/raw_editor/raw_editor_state.dart b/lib/src/widgets/raw_editor/raw_editor_state.dart index dec2ca5c..527eb0b2 100644 --- a/lib/src/widgets/raw_editor/raw_editor_state.dart +++ b/lib/src/widgets/raw_editor/raw_editor_state.dart @@ -319,8 +319,8 @@ class QuillRawEditorState extends EditorState /// Copied from [EditableTextState]. List get contextMenuButtonItems { return EditableText.getEditableButtonItems( -// clipboardStatus: _clipboardStatus.value, - clipboardStatus: null, + clipboardStatus: + (_clipboardStatus != null) ? _clipboardStatus!.value : null, onCopy: copyEnabled ? () => copySelection(SelectionChangedCause.toolbar) : null, @@ -1121,8 +1121,9 @@ class QuillRawEditorState extends EditorState @override void initState() { super.initState(); - -// _clipboardStatus.addListener(_onChangedClipboardStatus); + if (clipboardStatus != null) { + _clipboardStatus!.addListener(_onChangedClipboardStatus); + } controller.addListener(_didChangeTextEditingValueListener); @@ -1276,9 +1277,11 @@ class QuillRawEditorState extends EditorState controller.removeListener(_didChangeTextEditingValueListener); widget.configurations.focusNode.removeListener(_handleFocusChanged); _cursorCont.dispose(); - //_clipboardStatus - // ..removeListener(_onChangedClipboardStatus) - // ..dispose(); + if (_clipboardStatus != null) { + _clipboardStatus! + ..removeListener(_onChangedClipboardStatus) + ..dispose(); + } super.dispose(); }