FIXME-TABLE: This prevents us from using ImGuiListClipper _inside_ a table cell. The problem we have is that without a Begin/End scheme for rows using the clipper is ambiguous.
| 2558 | // FIXME-TABLE: This prevents us from using ImGuiListClipper _inside_ a table cell. |
| 2559 | // The problem we have is that without a Begin/End scheme for rows using the clipper is ambiguous. |
| 2560 | static bool GetSkipItemForListClipping() |
| 2561 | { |
| 2562 | ImGuiContext& g = *GImGui; |
| 2563 | return (g.CurrentTable ? g.CurrentTable->HostSkipItems : g.CurrentWindow->SkipItems); |
| 2564 | } |
| 2565 | |
| 2566 | #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS |
| 2567 | // Legacy helper to calculate coarse clipping of large list of evenly sized items. |
no outgoing calls
no test coverage detected