From 95a4442c47d4e9c6505cb7573e3285904fe1a1e8 Mon Sep 17 00:00:00 2001 From: Egor Korshun <120365747+EgorK0rshun@users.noreply.github.com> Date: Sun, 11 Feb 2024 04:30:27 +0300 Subject: [PATCH] Fix incorrect behaviour of context menu (#1734) --- lib/src/widgets/raw_editor/raw_editor_state.dart | 7 +++++-- 1 file changed, 5 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 03424ccd..9dd485b0 100644 --- a/lib/src/widgets/raw_editor/raw_editor_state.dart +++ b/lib/src/widgets/raw_editor/raw_editor_state.dart @@ -528,8 +528,11 @@ class QuillRawEditorState extends EditorState // ClipboardStatusNotifier with a default value of unknown will cause the // clipboard status to be checked w/o user interaction which fails. Default // to pasteable for web. - _clipboardStatus = ClipboardStatusNotifier( - value: kIsWeb ? ClipboardStatus.pasteable : ClipboardStatus.unknown); + if (kIsWeb) { + _clipboardStatus = ClipboardStatusNotifier( + value: ClipboardStatus.pasteable, + ); + } } if (widget.configurations.scrollable) {