Fix incorrect behaviour of context menu (#1734)

pull/1738/head
Egor Korshun 1 year ago committed by GitHub
parent 3d5fb03c5c
commit 95a4442c47
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 7
      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) {

Loading…
Cancel
Save