| 4256 | } |
| 4257 | |
| 4258 | void ImGui::SetColumnWidth(int column_index, float width) |
| 4259 | { |
| 4260 | ImGuiWindow* window = GetCurrentWindowRead(); |
| 4261 | ImGuiOldColumns* columns = window->DC.CurrentColumns; |
| 4262 | IM_ASSERT(columns != NULL); |
| 4263 | |
| 4264 | if (column_index < 0) |
| 4265 | column_index = columns->Current; |
| 4266 | SetColumnOffset(column_index + 1, GetColumnOffset(column_index) + width); |
| 4267 | } |
| 4268 | |
| 4269 | void ImGui::PushColumnClipRect(int column_index) |
| 4270 | { |
nothing calls this directly
no test coverage detected