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 encounter a delayed mouse interaction when using webview2 with winit.
Here's the branch to reproduce: https://github.com/tauri-apps/wry/tree/winit-reproduce
Run cargo r --example hello_world and press any tab or list constantly will find it gets a few seconds delay.
I found if we reduceRedrawWindow calls in thread_event_target_callback, it can resolve this issue.
Could we just call RedrawWindow only when thread_event_target_callback need to handle the message instead of calling RedrawWindow no matter what?
The text was updated successfully, but these errors were encountered:
I encounter a delayed mouse interaction when using webview2 with winit.
Here's the branch to reproduce: https://github.com/tauri-apps/wry/tree/winit-reproduce
Run
cargo r --example hello_world
and press any tab or list constantly will find it gets a few seconds delay.I found if we reduce
RedrawWindow
calls inthread_event_target_callback
, it can resolve this issue.Could we just call
RedrawWindow
only whenthread_event_target_callback
need to handle the message instead of callingRedrawWindow
no matter what?The text was updated successfully, but these errors were encountered: