aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/x11/events.rs
diff options
context:
space:
mode:
authorIvo Wetzel <ivo.wetzel@googlemail.com>2016-03-25 02:54:40 +0100
committerIvo Wetzel <ivo.wetzel@googlemail.com>2016-03-25 02:54:40 +0100
commit7a5e47c446801c40e9048668feb54f3d76dc2442 (patch)
tree83549f606174c40effa4656508920220efd10b45 /src/api/x11/events.rs
parent7473d99c2f4038a36cb7848e0c08f89b47b219b3 (diff)
parent8ae2df68e19ca71453af5e11de9ca807ef7adcb4 (diff)
downloadglutin-7a5e47c446801c40e9048668feb54f3d76dc2442.tar.gz
glutin-7a5e47c446801c40e9048668feb54f3d76dc2442.zip
Merge branch 'master' into x11_window_size_constraints
Diffstat (limited to 'src/api/x11/events.rs')
-rw-r--r--src/api/x11/events.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/api/x11/events.rs b/src/api/x11/events.rs
index 408a3ec..1c6668c 100644
--- a/src/api/x11/events.rs
+++ b/src/api/x11/events.rs
@@ -997,6 +997,8 @@ pub fn keycode_to_element(scancode: libc::c_uint) -> Option<VirtualKeyCode> {
//ffi::XK_hebrew_taw => events::VirtualKeyCode::Hebrew_taw,
//ffi::XK_hebrew_taf => events::VirtualKeyCode::Hebrew_taf,
//ffi::XK_Hebrew_switch => events::VirtualKeyCode::Hebrew_switch,
+ ffi::XF86XK_Back => VirtualKeyCode::NavigateBackward,
+ ffi::XF86XK_Forward => VirtualKeyCode::NavigateForward,
_ => return None
})
}