Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
c-seeger authored and singerdmx committed Feb 6, 2024
1 parent ed514c0 commit 5d9dc10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/widgets/raw_editor/raw_editor_state.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1121,7 +1121,7 @@ class QuillRawEditorState extends EditorState
@override
void initState() {
super.initState();
if (clipboardStatus != null) {
if (_clipboardStatus != null) {
_clipboardStatus!.addListener(_onChangedClipboardStatus);
}

Expand Down Expand Up @@ -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) =>
Expand Down

0 comments on commit 5d9dc10

Please sign in to comment.