David Maas

Results 237 comments of David Maas

For anyone looking for an alternative tool, I've been using [.NET Lab](https://lab.razor.fyi/) lately and have been pretty happy with it. It does unfortunately lack JIT disassembly, but you can get...

> What's the use for automatic reload? My use-case is that I have multiple monitors. I have VS Code open on my left monitor, the editor on my middle monitor,...

I believe this is a duplicate of https://github.com/ocornut/imgui/issues/3899 and https://github.com/ocornut/imgui/issues/8251 Unfortunately the issue is upstream of Dear ImGui (and possibly even upstream of GLFW/SDL): https://github.com/ocornut/imgui/issues/3899#issuecomment-803845959 It might be worth trying...

> And I'm sorry about the duplicate... I guess my initial research was not good enough. No worries at all! It's a weird problem to describe so it's people are...

> ^ You would think github of all places could properly handle displaying code The code button does `inline code` by default unless you have multiple lines selected. ~~~ ```cpp...

I wonder if it might be easier to just add an advanced config option that leaves `ImHashData`/`ImHashStr` undefined so that a user-provided implementation can be used instead. FNV1a would be...

I was recently needing to build `example_android_opengl3` in order to test `ImGuiMouseSource` changes and found that the changes made in https://github.com/ocornut/imgui/pull/6229 broke the ability to build the example app using...

I don't think you're missing anything, this isn't something that's currently straightforward to accomplish in the current iteration of the docking API. Improving this sort of situation is mentioned in...

Good high DPI support is still a work in progress with Dear ImGui, but I'd expect it to be a bit less janky that what you're seeing here. Can you...

> but this creates a problem with legacy code which defacto often used this to change font for the purpose of changing size. Instead of modifying `PushFont` to not change...