@ -540,15 +540,15 @@ class QuillRawEditorState extends EditorState
child = BaselineProxy (
child = BaselineProxy (
textStyle: _styles ! . paragraph ! . style ,
textStyle: _styles ! . paragraph ! . style ,
padding: baselinePadding ,
padding: baselinePadding ,
child: QuillSingleChildScrollView (
child: _scribbleFocusable (
QuillSingleChildScrollView (
controller: _scrollController ,
controller: _scrollController ,
physics: widget . configurations . scrollPhysics ,
physics: widget . configurations . scrollPhysics ,
viewportBuilder: ( _ , offset ) = > CompositedTransformTarget (
viewportBuilder: ( _ , offset ) = > CompositedTransformTarget (
link: _toolbarLayerLink ,
link: _toolbarLayerLink ,
child: MouseRegion (
child: MouseRegion (
cursor: SystemMouseCursors . text ,
cursor: SystemMouseCursors . text ,
child: _scribbleFocusable (
child: QuilRawEditorMultiChildRenderObject (
QuilRawEditorMultiChildRenderObject (
key: _editorKey ,
key: _editorKey ,
offset: offset ,
offset: offset ,
document: doc ,
document: doc ,
@ -574,13 +574,13 @@ class QuillRawEditorState extends EditorState
) ,
) ,
) ;
) ;
} else {
} else {
child = CompositedTransformTarget (
child = _scribbleFocusable (
CompositedTransformTarget (
link: _toolbarLayerLink ,
link: _toolbarLayerLink ,
child: Semantics (
child: Semantics (
child: MouseRegion (
child: MouseRegion (
cursor: SystemMouseCursors . text ,
cursor: SystemMouseCursors . text ,
child: _scribbleFocusable (
child: QuilRawEditorMultiChildRenderObject (
QuilRawEditorMultiChildRenderObject (
key: _editorKey ,
key: _editorKey ,
document: doc ,
document: doc ,
selection: controller . selection ,
selection: controller . selection ,