| 3781 | } |
| 3782 | |
| 3783 | void ImGui::SetColumnWidth(int column_index, float width) |
| 3784 | { |
| 3785 | ImGuiWindow* window = GetCurrentWindowRead(); |
| 3786 | ImGuiOldColumns* columns = window->DC.CurrentColumns; |
| 3787 | IM_ASSERT(columns != NULL); |
| 3788 | |
| 3789 | if (column_index < 0) |
| 3790 | column_index = columns->Current; |
| 3791 | SetColumnOffset(column_index + 1, GetColumnOffset(column_index) + width); |
| 3792 | } |
| 3793 | |
| 3794 | void ImGui::PushColumnClipRect(int column_index) |
| 3795 | { |
nothing calls this directly
no test coverage detected