mirror of
https://github.com/Drezil/imgui.git
synced 2024-11-15 01:17:00 +00:00
Using GetCurrentWindowRead() instead of GetCurrentWindow()
This commit is contained in:
parent
fe7274b6c7
commit
5525c2356a
@ -5082,13 +5082,13 @@ ImVec2 ImGui::GetCursorPos()
|
||||
|
||||
float ImGui::GetCursorPosX()
|
||||
{
|
||||
ImGuiWindow* window = GetCurrentWindow();
|
||||
ImGuiWindow* window = GetCurrentWindowRead();
|
||||
return window->DC.CursorPos.x - window->Pos.x + window->Scroll.x;
|
||||
}
|
||||
|
||||
float ImGui::GetCursorPosY()
|
||||
{
|
||||
ImGuiWindow* window = GetCurrentWindow();
|
||||
ImGuiWindow* window = GetCurrentWindowRead();
|
||||
return window->DC.CursorPos.y - window->Pos.y + window->Scroll.y;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user