diff --git a/src/os/unix/mod.rs b/src/os/unix/mod.rs index 3b638a6..00f37ad 100644 --- a/src/os/unix/mod.rs +++ b/src/os/unix/mod.rs @@ -936,6 +936,8 @@ impl Window { XK_Scroll_Lock => Key::ScrollLock, XK_Shift_L => Key::LeftShift, XK_Shift_R => Key::RightShift, + XK_Alt_L => Key::LeftAlt, + XK_Alt_R => Key::RightAlt, XK_Control_L => Key::LeftCtrl, XK_Control_R => Key::RightCtrl, XK_Super_L => Key::LeftSuper,