Fixed tab editing when in readOnly mode (#1433)

pull/1428/head^2
carly-goodandbeautiful 1 year ago committed by GitHub
parent 1022f2dd44
commit 88a7f2c799
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      lib/src/widgets/raw_editor.dart

@ -757,6 +757,9 @@ class RawEditorState extends EditorState
controller.document.queryChild(controller.selection.baseOffset);
KeyEventResult insertTabCharacter() {
if (widget.readOnly) {
return KeyEventResult.ignored;
}
controller.replaceText(controller.selection.baseOffset, 0, '\t', null);
_moveCursor(1);
return KeyEventResult.handled;

Loading…
Cancel
Save