omar

Results 2356 comments of omar

I will try to look into this next week. `InputText()` does support something that's unusual: it is in theory supported that you don't provide persistent storage for the value while...

Yes unfortunately I think you currently have to do that until we investigate further. You might wrap it into code that uses the identifier (here `ImGui::GetID("my_input")` as a key instead...

I believe should now be fixed by https://github.com/ocornut/imgui/commit/a604d4f717bb99a704fcb17d29a6f0dbac78c060 However unlike the 4 other related issues, I don't have a strong test harness for this. It's partially emulated in https://github.com/ocornut/imgui_test_engine/commit/b85d832868803e2ed154b5ac93b338f46bb9e90a I'm...

Please describe your problem. You are not describing the problem.

I couldn't see the problem when looking at the code (except for the fact you are using extremely old OpenGL context version) so I copied your code and it worked...

It's a known issue, some features are not accessible from the angled header row. But you can submit a a regular `TableHeadersRow()` below `TableAngledHeadersRow()`. The cells will be empty but...

I believe there's two sides to this issue. Indeed, SDL and GLFW don't support this (maybe X doesn't support it or doesn't recommend it? I don't know) But the bug...

`ComboAutoSelect()` is not a function I know or wrote or heard for. > The behaviour I am seeing instead is that the combo sizes proportionally to around 70% of the...

Hello Enrique, I prefer to not add too many rarely used function. Triangles are already not frequent in UI development. As you found out this is a 5 lines function...

Closing as IMHO not needed. This is one of the case where I regret using class methods for `ImDrawList` instead of loose function.