Allow user to check for Key::Space

This commit is contained in:
Daniel Collin 2020-12-13 10:00:20 +01:00
parent 2075cb4676
commit 69dc13ed2d
3 changed files with 3 additions and 0 deletions

View file

@ -201,6 +201,7 @@ pub enum Key {
Delete,
End,
Enter,
Space,
Escape,
Home,
Insert,

View file

@ -171,6 +171,7 @@ pub fn translate_virtual_key_code(key: VirtualKeyCode) -> Option<egui::Key> {
Back => Key::Backspace,
Return => Key::Enter,
Tab => Key::Tab,
Space => Key::Space,
A => Key::A,
K => Key::K,

View file

@ -279,6 +279,7 @@ pub fn translate_key(key: &str) -> Option<egui::Key> {
"Delete" => Some(egui::Key::Delete),
"End" => Some(egui::Key::End),
"Enter" => Some(egui::Key::Enter),
"Space" => Some(egui::Key::Space),
"Esc" | "Escape" => Some(egui::Key::Escape),
"Help" | "Insert" => Some(egui::Key::Insert),
"Home" => Some(egui::Key::Home),