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
KeyboardService generates passive events, so it cannot be used with prevent_default ().
Proposed change :
line 142 of keyboard.rs : KeyListenerHandle(EventListener::new(element.as_ref(), event, listener))
should probably be KeyListenerHandle(EventListener::new_with_options(element.as_ref(), event, EventListenerOptions::enable_prevent_default(),listener))
The text was updated successfully, but these errors were encountered:
KeyboardService generates passive events, so it cannot be used with prevent_default ().
Proposed change :
line 142 of keyboard.rs : KeyListenerHandle(EventListener::new(element.as_ref(), event, listener))
should probably be KeyListenerHandle(EventListener::new_with_options(element.as_ref(), event, EventListenerOptions::enable_prevent_default(),listener))
The text was updated successfully, but these errors were encountered: