You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not sure why, but the Tao codebase has a copy of the keyboard_types::key enum. I'm building a library that uses the actual keyboard_types library and these two enums don't interoperate with each other.
It would be great if Key and Code were taken from a an upstream library so the ecosystem could mesh together better.
The text was updated successfully, but these errors were encountered:
accelerator module is now rewritten using keyboard_types crate in tauri-apps/muda#17 (it will take a while though until it lands in the tauri stack)
global_shortcut module is going to be removed completely and users will need to build their own shortcut manager on top of DeviceEvent::Key
Only keyboard events are left but since we are planning to move back to use winit directly, it is useless to port keyboard events in tao to keyboard_types crate. I opened an issue at winit rust-windowing/winit#2394.
I'm not sure why, but the Tao codebase has a copy of the
keyboard_types::key
enum. I'm building a library that uses the actualkeyboard_types
library and these two enums don't interoperate with each other.It would be great if Key and Code were taken from a an upstream library so the ecosystem could mesh together better.
The text was updated successfully, but these errors were encountered: