mirror of
https://github.com/rust-lang/rustlings.git
synced 2024-11-08 09:09:17 +01:00
Accept repeat keyboard events
This commit is contained in:
parent
d1a965f019
commit
c9a5fa6097
11
src/list.rs
11
src/list.rs
@ -28,13 +28,10 @@ pub fn list(state_file: &mut StateFile, exercises: &'static [Exercise]) -> Resul
|
|||||||
|
|
||||||
let key = loop {
|
let key = loop {
|
||||||
match event::read()? {
|
match event::read()? {
|
||||||
Event::Key(key) => {
|
Event::Key(key) => match key.kind {
|
||||||
if key.kind != KeyEventKind::Press {
|
KeyEventKind::Press | KeyEventKind::Repeat => break key,
|
||||||
continue;
|
KeyEventKind::Release => (),
|
||||||
}
|
},
|
||||||
|
|
||||||
break key;
|
|
||||||
}
|
|
||||||
// Redraw
|
// Redraw
|
||||||
Event::Resize(_, _) => continue 'outer,
|
Event::Resize(_, _) => continue 'outer,
|
||||||
// Ignore
|
// Ignore
|
||||||
|
Loading…
Reference in New Issue
Block a user