Mads Marquart

Results 394 comments of Mads Marquart

Thanks for the example! 👍 If you want, you can make a PR to put it into the `examples` folder? Otherwise, I'll probably do it myself at some point 😉

Hmm, hadn't really put much thought into this, but you're right, there's not a way to fetch a larger URL for a thread image / user image! But sadly, I...

The error is in this case mostly just a warning, you should be able to safely ignore it, but still, thanks for the report, the data you've provided will be...

Hi @AlphaArslan, thanks for the PR, but it might not be the best approach. There's a reason that the `get_jsmods_require` line is present, something about refreshing the `fb_dtsg` variable when...

Thanks for the report, @piecharm9. I edited your message to fix the code embedding (you have to use ``` around the code segment). Regarding your error, just ignore it, it's...

Well, also kinda depends on what these support tables are to be used for - reconsidering, I think it makes sense to guarantee support for some specific version (or a...

@alice-i-cecile you may be able to use `Event::to_static`. Note that it is likely that that workaround isn't going to work reliably; many parts of `winit` expect that you respond to...

Also, I would say your `winit_open_file` example is flawed; most applications should either open a new window for every file: ```rust let window_target = event_loop.window_target(); event_loop.set_file_open_callback(Some(|paths: Vec| { for path...

> I'm facing a similar issue on macOS in Bevy when key repeat rate is set faster than FPS (15ms key repeat, 16.7ms fps), see [bevyengine/bevy#5909](https://github.com/bevyengine/bevy/issues/5909) Please open a new...

The implementation could build upon https://github.com/rust-windowing/winit/pull/2148