Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 786a528

Browse files
analyzer fix
1 parent 98fad47 commit 786a528

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/web_ui/lib/src/engine/text_editing/text_editing.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ class TextEditingDeltaState {
486486
// We are replacing text at a selection.
487487
// When a selection of text is replaced by a copy/paste operation we set the starting range
488488
// of the delta to be the beginning of the selection of the previous editing state.
489-
newTextEditingDeltaState.deltaStart = lastEditingState!.baseOffset!;
489+
newTextEditingDeltaState.deltaStart = lastEditingState.baseOffset!;
490490
}
491491

492492
// If we are composing then set the delta range to the composing region we

0 commit comments

Comments
 (0)