| 3835 | } |
| 3836 | |
| 3837 | void ImGui::SetColumnWidth(int column_index, float width) |
| 3838 | { |
| 3839 | ImGuiWindow* window = GetCurrentWindowRead(); |
| 3840 | ImGuiOldColumns* columns = window->DC.CurrentColumns; |
| 3841 | IM_ASSERT(columns != NULL); |
| 3842 | |
| 3843 | if (column_index < 0) |
| 3844 | column_index = columns->Current; |
| 3845 | SetColumnOffset(column_index + 1, GetColumnOffset(column_index) + width); |
| 3846 | } |
| 3847 | |
| 3848 | void ImGui::PushColumnClipRect(int column_index) |
| 3849 | { |
nothing calls this directly
no test coverage detected