1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-01-11 00:04:24 +00:00

Columns: Caching columns clipping rectangles (#125)

This commit is contained in:
omar 2017-08-20 23:17:59 +08:00
parent adeaf1cd72
commit 067127f113
2 changed files with 15 additions and 6 deletions

View file

@ -316,6 +316,7 @@ struct ImGuiGroupData
struct ImGuiColumnData
{
float OffsetNorm; // Column start offset, normalized 0.0 (far left) -> 1.0 (far right)
ImRect ClipRect;
//float IndentX;
};