|
|
@ -483,8 +483,10 @@ class QuillRawEditorState extends EditorState |
|
|
|
viewportBuilder: (_, offset) => CompositedTransformTarget( |
|
|
|
viewportBuilder: (_, offset) => CompositedTransformTarget( |
|
|
|
link: _toolbarLayerLink, |
|
|
|
link: _toolbarLayerLink, |
|
|
|
child: MouseRegion( |
|
|
|
child: MouseRegion( |
|
|
|
cursor: SystemMouseCursors.text, |
|
|
|
cursor: widget.configurations.readOnly |
|
|
|
child: QuilRawEditorMultiChildRenderObject( |
|
|
|
? widget.configurations.readOnlyMouseCursor |
|
|
|
|
|
|
|
: SystemMouseCursors.text, |
|
|
|
|
|
|
|
child: QuillRawEditorMultiChildRenderObject( |
|
|
|
key: _editorKey, |
|
|
|
key: _editorKey, |
|
|
|
offset: offset, |
|
|
|
offset: offset, |
|
|
|
document: doc, |
|
|
|
document: doc, |
|
|
@ -515,8 +517,10 @@ class QuillRawEditorState extends EditorState |
|
|
|
link: _toolbarLayerLink, |
|
|
|
link: _toolbarLayerLink, |
|
|
|
child: Semantics( |
|
|
|
child: Semantics( |
|
|
|
child: MouseRegion( |
|
|
|
child: MouseRegion( |
|
|
|
cursor: SystemMouseCursors.text, |
|
|
|
cursor: widget.configurations.readOnly |
|
|
|
child: QuilRawEditorMultiChildRenderObject( |
|
|
|
? widget.configurations.readOnlyMouseCursor |
|
|
|
|
|
|
|
: SystemMouseCursors.text, |
|
|
|
|
|
|
|
child: QuillRawEditorMultiChildRenderObject( |
|
|
|
key: _editorKey, |
|
|
|
key: _editorKey, |
|
|
|
document: doc, |
|
|
|
document: doc, |
|
|
|
selection: controller.selection, |
|
|
|
selection: controller.selection, |
|
|
|