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.
| 2245 | // FIXME-TABLE: This prevents us from using ImGuiListClipper _inside_ a table cell. |
| 2246 | // The problem we have is that without a Begin/End scheme for rows using the clipper is ambiguous. |
| 2247 | static bool GetSkipItemForListClipping() |
| 2248 | { |
| 2249 | ImGuiContext& g = *GImGui; |
| 2250 | return (g.CurrentTable ? g.CurrentTable->HostSkipItems : g.CurrentWindow->SkipItems); |
| 2251 | } |
| 2252 | |
| 2253 | #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS |
| 2254 | // Legacy helper to calculate coarse clipping of large list of evenly sized items. |
no outgoing calls
no test coverage detected