dbr/Ben
dbr/Ben
> Is it possible to have these kinds of buttons? Definitely - best way is probably to use the "invisible button" as the base (it lets you handle clicking and...
I have a suspicion it's not necessary to directly use the `ImVector` (mainly as it's not used for the imgui-glow-renderer or imgui-glium-renderer - they use the `imgui::DrawIdx` instead), but I'm...
Surprising crash, but I guess it's uncommon to call `set_keyboard_focus_here` every frame like that (it would more often be called something like `if ui.button("...") { ui.set_keyboard_focus_here(); }`) This appears to...
It seems like there's only really [`freetype-sys`](https://crates.io/crates/freetype-sys) package maintained by the Piston project - and that doesn't have a `bundled` feature: it just gives instructions on how to install the...
I think this overlaps significantly with #566 - it's unclear to me what the correct way is to make the freetype library available on Windows. On linux it just requires...
This is usually referred to as "window decoration", and would be up to whatever library you are using to actually create the window E.g if you are using winit, then...
Side note: I put this under the v0.10 milestone, but no pressure whatsoever if it's not done by then or if you stop working on the PR! Plus we have...
> Hi there, BTW Can this PR achieve this goal? https://github.com/imgui-rs/imgui-rs/issues/299 also https://github.com/inkyblackness/imgui-go-examples/issues/1 I would assume the solution described in the imgui-go link should work here - basically make your...
Combining the winit+glow into one crate for the viewport sounds like a good idea to me! With the "combined" crate, I would suggest only supporting the latest version of winit....
Oh I breifly thought parking_lot might be in the public API so would arguably be a breaking change, https://github.com/imgui-rs/imgui-rs/blob/patch-v0.8/imgui/src/test.rs#L6 ..but that's only enabled under `#[cfg(test)]` and otherwise only used internally,...