dusk

Results 138 comments of dusk

Can you try and see if the `feat/builtinfetchgit` branch of https://github.com/yusdacra/crate2nix fixes the issue?

> @yusdacra Oh yeah, this worked! Thank you! That's good to hear. I've been meaning to make a PR for upstream, but that particular branch has so many changes and...

I encountered this issue while I was performing usual `Cargo.nix` regeneration on the Veloren project. The suggested workaround did not work for me, so I resorted to manually commenting the...

I have the same issue but adding `normalize_doc_attributes = false` doesn't seem to solve the issue. My `rustfmt.toml`: ``` unstable_features = true wrap_comments = false max_width = 80 normalize_comments =...

The PR solved the issue, everything builds perfectly now. Thanks for the great work!

Sure! I can go with the branch approach and link that in the `README.md`, which should be okay I think.

Note this also happens for other edges as well. A popup can clip over the bottom edge of a window. This sounds like it wouldn't be easy to implement given...

As a workaround, i managed to achieve this with: ```rust let response = ui.text_button(&title); let popup_id = ui.make_persistent_id("profile_menu"); if response.clicked() { ui.memory().toggle_popup(popup_id); } egui::popup_below_widget(ui, popup_id, &response, |ui| { ... });...

This issue also affects one of my crates and causes tests to get stuck and fail. Would love to see this get fixed soon. I would like to take a...

> Do either of you know if this only happens with `grpc-go` or if happens with other h2 servers? Not sure, as our server is only implemented with Go currently....