omar

Results 2356 comments of omar

`ImGuiTableFlags_HighlightHoveredColumn` (added in 1.90) currently only highlight the header row so there's no exact equivalent for row since there's no "header column". But the earlier should IMHO be redesigned and...

You would need to investigate this on your own but it seems like a problem of your recording software, if not a feature (perhaps they are hijacking something to make...

Is that also when recording? What sort of ms/frame amount does it goes from and to ? We create new windows and swapchains so there is a cost but normally...

Profiling would be needed, but unfortunately this can be due to so many things: - drivers - drivers settings related to vsync - possibly swapchain swapeffect One thing that may...

If you are actually user of the premake branch, then I'd happily take a CI thing for it (which will stay in the branch for now). > Would it be...

There’s already a big yml file for everything so it should be (2) and just add items to it. It doesn’t need to cover every possible combination just a basic...

Hello, > work in an older version if ImGui and since updating doesn't. From which version? > Was what i was doing techincally not supposed to be possible and now...

This has been an open problem #1815 #1183 #7082 I haven't been able to spend the time to find a good solution for it yet. Perhaps the best solution is...

Hello, This is not trivial or available out of the box but it should be possible to build a custom combined widgets. Depending on which exact flags and features of...

Here's the same logic as posted in https://github.com/ocornut/imgui/issues/2718#issuecomment-591057202 but fixed/updated for recent versions: ```cpp #include "imgui_internal.h" bool SelectableInput(const char* str_id, bool selected, ImGuiSelectableFlags flags, char* buf, size_t buf_size) { using...