You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While running the Demo project there are asserts from ImGui.NET about SetCursorPos being used incorrectly. This was recently introduced when the ImGui.NET dependency was updated.
The assert is: "Code uses SetCursorPos()/SetCursorScreenPos() to extend window/parent boundaries. Please submit an item e.g. Dummy() to validate extent."
I believe the issue is how the grid advances the cursor. It always advances to the top left of the next cell for drawing the content but I think it also advances one more time even after the final cell has been drawn. This is what I will investigate first.
While running the Demo project there are asserts from ImGui.NET about SetCursorPos being used incorrectly. This was recently introduced when the ImGui.NET dependency was updated.
The assert is: "Code uses SetCursorPos()/SetCursorScreenPos() to extend window/parent boundaries. Please submit an item e.g. Dummy() to validate extent."
The code can be found here: https://github.com/ocornut/imgui/blob/master/imgui.cpp#L10084
The linked issue ca be found here: ocornut/imgui#5548
The text was updated successfully, but these errors were encountered: