Max “Goldstein” Siling
Max “Goldstein” Siling
I’m using Roundcube. I think I observe the same behaviour with iOS Mail app, but I’ll need to re-check that. > This wouldn't work for Zulip in that it's a...
Yeah, not grouped on iOS Mail. 
Okay, I found a workaround: I can add a type alias like ```cpp namespace myns { using mystruct_myenum = mystruct::myenum; } ``` and then use variant 2. This still feels...
Will a PR that just adds `.default_enum_style()` to `autocxx_build::Builder` be accepted? It would probably be better to have granularity here, but being able to restore the default to the one...
> You've created a window of logical size I’ve created a window of _physical_ size 400x400. ```rust .with_inner_size(PhysicalSize::new(400.0, 400.0)) ``` https://github.com/GoldsteinE/winit/blob/scale-bug-repro/examples/bug.rs#L30 winit incorrectly converted that to _logical_ size 400x400, created...
> This is wrong if you simply look in the code you've linked, it converts to logical but not initial size, initial size is below and not converted unless we...
> Setting resizable to false at the same time, makes compositor to emit configure with the size of logical 400px and winit will obey and use that size as logical...
> You can adjust back right away when handling `ScaleFactorChanged` event, it has a `surface_size_writer` to resize back if you really want to preserve physical size and shrink/enlarge your window...
> right now we state that DPI change can resize you if you have non-resizable window, which is what happening Yeah, I guess the non-intuitive thing is that DPI change...
Yeah, I initially expected that winit will remember size as I specified it, without converting to logical, and then react to scale changes by converting it to logical and using...