diff options
Diffstat (limited to 'native')
-rw-r--r-- | native/src/widget/text_input/editor.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/native/src/widget/text_input/editor.rs b/native/src/widget/text_input/editor.rs index 71c4f292..c9b9795d 100644 --- a/native/src/widget/text_input/editor.rs +++ b/native/src/widget/text_input/editor.rs @@ -54,8 +54,7 @@ impl<'a> Editor<'a> { if start > 0 { self.cursor.move_left(self.value); - - let _ = self.value.remove(start - 1); + self.value.remove(start - 1); } } } @@ -70,7 +69,7 @@ impl<'a> Editor<'a> { let end = self.cursor.end(self.value); if end < self.value.len() { - let _ = self.value.remove(end); + self.value.remove(end); } } } |