omar
omar
Your first example can't work anyway because the `if (ImGui::BeginPopupModal("popup"))` block is only called when the menu is being browsed. If it worked it would assert anyway because you aren't...
Yes I would like to solve that but it would need to be solved in a generic manner not only for popup. I don't know how and when yet (considering...
This is probably a good solution to solve this specific problem (aside from the fact that the amount of # characters may start to be a little worrying). My concern...
Computing the popup ID ahead of time should help. In the unpublished TestEngine we use path names for identifier and we intend to provide that same functionality in Core eventually....
The issue is open because the status quo hasn't changed yet. My plan is to add support for "/" "../" prefixes as mentioned, and to be in line with what...
> In the previous version, that last mouse action function worked as expected - when the cursor was positioned over the overlapped item, it would return true as expected. Now...
I think you need to provide more pseudo code or repro and a more descriptive context (eg screenshots), words are too ambiguous and your first blurb of code is clearly...
Why are you submitting an all-row-spanning Selectable() in every column? You should only submit one. I’ll try to recreate that repro soon.
I ported your code to C++ and understood the problem: a `ImGui::Text()` item doesn't react to mouse events and thus doesn't claim overlap from the `Selectable()`. So essentially SetNextItemAllowOverlap +...
Tangential: I decided to move `TableGetHoveredColumn()` to public API, which is a way to obtain the hovered column in a table without polling individual columns. So you could change ```cpp...