bugfix: can't drag select text

bugfix: can't drag select text
pull/232/head
zhaoce 4 years ago
parent dffb1313be
commit 82f85021ba
  1. 8
      lib/widgets/raw_editor.dart

@ -490,7 +490,13 @@ class RawEditorState extends EditorState
} }
@override @override
void bringIntoView(TextPosition position) {} void bringIntoView(TextPosition position) {
setState(() {
widget.controller.selection = TextSelection(
baseOffset: widget.controller.selection.baseOffset,
extentOffset: position.offset);
});
}
@override @override
void connectionClosed() { void connectionClosed() {

Loading…
Cancel
Save