Support for "Insert" from character key location (#37219)

Release Notes:
- Added support for the Insert-Key from a character key location for
keyboard layouts like neo2
This commit is contained in:
Gerd Augsburg
2025-08-31 11:26:28 +03:00
committed by GitHub
parent e115584896
commit d80f13242b
@@ -848,6 +848,7 @@ impl crate::Keystroke {
Keysym::Down => "down".to_owned(),
Keysym::Home => "home".to_owned(),
Keysym::End => "end".to_owned(),
Keysym::Insert => "insert".to_owned(),
_ => {
let name = xkb::keysym_get_name(key_sym).to_lowercase();