mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-14 00:34:18 +00:00
Fixed MouseClickedPos not updated on double-click update (fix #167)
This commit is contained in:
parent
3b3a32cbd6
commit
a71fc8e6a5
1 changed files with 1 additions and 1 deletions
|
|
@ -1835,8 +1835,8 @@ void ImGui::NewFrame()
|
|||
else
|
||||
{
|
||||
g.IO.MouseClickedTime[i] = g.Time;
|
||||
g.IO.MouseClickedPos[i] = g.IO.MousePos;
|
||||
}
|
||||
g.IO.MouseClickedPos[i] = g.IO.MousePos;
|
||||
}
|
||||
}
|
||||
for (size_t i = 0; i < IM_ARRAYSIZE(g.IO.KeysDown); i++)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue