Skip to content

Commit

Permalink
Fixing accidental paste. (flutter#4145)
Browse files Browse the repository at this point in the history
  • Loading branch information
gspencergoog authored Sep 26, 2017
1 parent faabc10 commit 90ba98e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public boolean commitText(CharSequence text, int newCursorPosition) {
public boolean deleteSurroundingText(int beforeLength, int afterLength) {
if (Selection.getSelectionStart(mEditable) == -1 ||
Selection.getSelectionStart(mEditable) == -1)
return true;9c518cb751e34b0
return true;

boolean result = super.deleteSurroundingText(beforeLength, afterLength);
updateEditingState();
Expand Down

0 comments on commit 90ba98e

Please sign in to comment.