Jean Mertz

Results 119 comments of Jean Mertz

`whitespace` is another that can cause this issue. ``` golangci-lint run --no-config --disable-all --skip-dirs pkg/simpletemplate -E whitespace WARN [runner] Can't run linter whitespace: whitespace: failed to get line /pkg/simpletemplate/yaccpar:329: failed...

For what it's worth, I had Steam running using the above workarounds, but unfortunately, since [yesterday's big update](https://store.steampowered.com/news/app/593110/view/3687931965598906184), it now crashes at boot with a "program error" in `steamwebhelper.exe`.

I should note that I tried to set the cursor using ```rust ctx.set_cursor_icon(bevy_egui::egui::CursorIcon::PointingHand); ``` And I can see the cursor change for one frame, but then change back again. I...

I've worked around this for now by introducing a new `Cursor` resource, which other systems can change, and then the egui rendering system sets the correct cursor on every frame....

@wiggleforlife I do not, as I haven't had a need for custom cursors in egui. One solution that might work is checking if "egui wants focus", and then not applying...

I second this request. However, `dioxus-helmet` isn't enough in my case, as I need to actually add properties to both the `html` and `body` elements. I don't mind so much...

> Do client applications actually read those values and hold off on making requests until they know the reset period has ended? Is there some other function that makes them...

I too would like to see a feature like this. It would help with things like this: https://github.com/rustic-games/things/commit/ae5280d71af606901354d0f62a9f5fe61a25ddfc Which uses the (unstable) [`external_doc` feature](https://doc.rust-lang.org/beta/unstable-book/language-features/external-doc.html). Although, I guess, this would be...

See also: https://github.com/serokell/deploy-rs/issues/167#issuecomment-1325946289 The problem is that `deployChecks` runs _locally_, even if `--remote-build` is provided. So if your deploy target's architecture differs from your local machine's, it won't work, until...