David Maas

Results 177 comments of David Maas

Some official documentation of interest: * https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/symbol-store-folder-tree * https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/http-symbol-stores Other not official links of interest: * https://randomascii.wordpress.com/2020/03/14/creating-a-public-symbol-server-easily/ * https://randomascii.wordpress.com/2013/03/09/symbols-the-microsoft-way/ (Mostly about workflows for Linux for people used to symbol server,...

@PeterJohnson What/why were you remapping before? Everything in `KeyMap` was used for pretty well-established UI behaviors so it seems odd to me that you'd want to customize them in the...

Ah yeah, the driver station? 😅 That makes sense. I haven't tested it super thoroughly, but this might be good enough for your use-case: ```cpp //... ImGui::NewFrame(); if (ImGui::IsKeyPressed(ImGuiKey_RightCtrl)) {...

You cannot change only one part of the text color, you have to change all of it as shown by averne. If you're willing to poke at Dear ImGui internals,...

@RorySoh Cool project and cool use of Dear ImGui! (FYI all your links are broken due to being formatted incorrectly. See [GitHub's documentation](https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax#links) for details.)

See also https://github.com/ocornut/imgui/issues/4810 It's somewhat intentional that you can't provide your own loader. In the past Dear ImGui required you to provide your own loader and it was an endless...

> Wouldn't it be ok to provide additional ways to configure Dear ImGui? It sounds like a legitimate advanced scenario to me, but Omar has the final say. I think...

In my opinion it's fairly confusing that popups effectively have two IDs like this. Dear ImGui is *trying* to concatenate the two windows but I'd argue this isn't ever what...

I did a quick and (very) dirty implementation of `ImGuiWindowFlags_InheritIdStack` just to get an rough idea of the impact it might have: https://github.com/PathogenDavid/imgui/commit/30334ce5e8238e09ef62de0b45d92d896683a963 One issue that is immediately apparent is...

Have you tried [the `range_select` branch](https://github.com/ocornut/imgui/wiki/Multi-Select) to see if it meets your needs? I know Omar is looking for feedback on it, and in the near future it should be...