| 805 | } |
| 806 | |
| 807 | ImGuiID ImGui::GetWindowScrollbarID(ImGuiWindow* window, ImGuiAxis axis) |
| 808 | { |
| 809 | return window->GetIDNoKeepAlive(axis == ImGuiAxis_X ? "#SCROLLX" : "#SCROLLY"); |
| 810 | } |
| 811 | |
| 812 | // Vertical/Horizontal scrollbar |
| 813 | // The entire piece of code below is rather confusing because: |
nothing calls this directly
no test coverage detected