Check if event is altgr

This commit is contained in:
asur4s 2023-03-21 00:09:36 -07:00
parent f441d2fe5e
commit f709118c69

View File

@ -880,6 +880,10 @@ pub fn translate_keyboard_mode(peer: &str, event: &Event, key_event: KeyEvent) -
}
}
if event.platform_code == 0xFE03 {
return events;
}
#[cfg(target_os = "linux")]
try_fill_unicode(event, &key_event, &mut events);