Skip to content

Commit

Permalink
fix: keyboard passing unused inputs through (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
goweiwen committed Oct 23, 2023
1 parent 4de6ae6 commit 136fddd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/src/view/input/keyboard.rs
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ impl View for Keyboard {
commands.send(Command::Redraw).await?;
return Ok(true);
}
_ => return Ok(false),
_ => return Ok(true),
}
Ok(true)
}
Expand Down

0 comments on commit 136fddd

Please sign in to comment.