1
0
mirror of https://github.com/wolfpld/tracy synced 2025-04-29 12:23:53 +00:00

Drag delta (accumulated) shouldn't be consumed.

This commit is contained in:
Bartosz Taudul 2020-08-01 12:36:52 +02:00
parent b33445c073
commit 7d34350bf3

View File

@ -74,7 +74,6 @@ void ConsumeMouseEvents( ImGuiMouseButton button )
s_mouse.mouseDown[button] = false;
s_mouse.mouseClicked[button] = false;
s_mouse.mouseDragging[button] = false;
s_mouse.mouseDragDelta[button] = ImVec2( 0, 0 );
}
bool IsMouseClickReleased( ImGuiMouseButton button )