mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-18 08:02:13 +03:00
e447b8e0e6
* allow event listeners to be nested * finish event comment * remove extraneous into_iter() * use tag instead of params on event for easier testing
352 B
352 B
tauri |
---|
patch |
Window and global events can now be nested inside event handlers. They will run as soon as the event handler closure is finished in the order they were called. Previously, calling events inside an event handler would produce a deadlock.
Note: The order that event handlers are called when triggered is still non-deterministic.