Support for Back/Forward multimedia keys (#20695)

- Added Support for Back/Forward multimedia keys (Linux)
This commit is contained in:
Peter Tripp 2024-11-18 14:36:08 +00:00 committed by GitHub
parent 5fd7afb9da
commit f01a86c644
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 10 additions and 0 deletions

View file

@ -684,6 +684,8 @@ impl Keystroke {
Keysym::ISO_Left_Tab => "tab".to_owned(),
Keysym::KP_Prior => "pageup".to_owned(),
Keysym::KP_Next => "pagedown".to_owned(),
Keysym::XF86_Back => "back".to_owned(),
Keysym::XF86_Forward => "forward".to_owned(),
Keysym::comma => ",".to_owned(),
Keysym::period => ".".to_owned(),