Skrity

Results 4 comments of 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()`...

~~We can force windows to use UTF-8 stdin/stdout for our application. Here is an example code for that:~~ ```rust fn force_utf8_on_windows() { use windows_sys::Win32::Foundation::TRUE; use windows_sys::Win32::Globalization::{CP_UTF8, IsValidCodePage}; use windows_sys::Win32::System::Console::{SetConsoleCP, SetConsoleOutputCP};...