Skip to content

Commit 6ae3eba

Browse files
fix backspace handling in editbox widget (not-fl3#564)
1 parent 1c57053 commit 6ae3eba

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/ui/widgets/editbox.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ impl<'a> Editbox<'a> {
9191
} => {
9292
if character != 13 as char
9393
&& character != 10 as char
94+
&& character != 8 as char
9495
&& character.is_ascii()
9596
&& self.filter.as_ref().map_or(true, |f| f(character))
9697
{

0 commit comments

Comments
 (0)