| 3817 | } |
| 3818 | |
| 3819 | void ImGui::PopColumnsBackground() |
| 3820 | { |
| 3821 | ImGuiWindow* window = GetCurrentWindowRead(); |
| 3822 | ImGuiOldColumns* columns = window->DC.CurrentColumns; |
| 3823 | if (columns->Count == 1) |
| 3824 | return; |
| 3825 | |
| 3826 | // Optimization: avoid PopClipRect() + SetCurrentChannel() |
| 3827 | SetWindowClipRectBeforeSetChannel(window, columns->HostBackupClipRect); |
| 3828 | columns->Splitter.SetCurrentChannel(window->DrawList, columns->Current + 1); |
| 3829 | } |
| 3830 | |
| 3831 | ImGuiOldColumns* ImGui::FindOrCreateColumns(ImGuiWindow* window, ImGuiID id) |
| 3832 | { |
nothing calls this directly
no test coverage detected