Added GetCursorStartPos() necessary for using scroll target relative to beginning of window content (#150)

This commit is contained in:
ocornut
2015-07-02 14:46:49 -06:00
parent 1b01137c90
commit 9bedcb5304
2 changed files with 7 additions and 0 deletions

View File

@ -4797,6 +4797,12 @@ void ImGui::SetCursorPosY(float y)
window->DC.CursorMaxPos.y = ImMax(window->DC.CursorMaxPos.y, window->DC.CursorPos.y);
}
ImVec2 ImGui::GetCursorStartPos()
{
ImGuiWindow* window = GetCurrentWindow();
return window->DC.CursorStartPos - window->Pos;
}
ImVec2 ImGui::GetCursorScreenPos()
{
ImGuiWindow* window = GetCurrentWindow();