Skrity
Skrity
I'll report it to winit then, thank you. Also changed the code to avoid the confusion.
~~I have attempted to reproduce it in winit but couldn't: set_cursor_hittest() works fine on winit example window.~~ While trying to repeat the error I noticed that [with_visible](https://github.com/emilk/egui/blob/d7189d69f6fa364363d271889a30f2aa78cdd392/crates/eframe/src/native/run.rs#L499) is somehow involved...
For myself I worked around it in eframe. In file native/run.rs you've got to move this code: ```rust if self.native_options.mouse_passthrough { gl_window.window().set_cursor_hittest(false).unwrap(); } ``` from `init_run_state()` to GlowWinitApp method `paint()`...