mirror of
https://github.com/Drezil/imgui.git
synced 2025-07-04 12:08:47 +02:00
Merge branch 'master' into viewport (inc Vulkan resize fix merge #1042)
This commit is contained in:
@ -468,9 +468,9 @@ struct ImGuiColumnsSet
|
||||
int Current;
|
||||
int Count;
|
||||
float MinX, MaxX;
|
||||
float StartPosY;
|
||||
float StartMaxPosX; // Backup of CursorMaxPos
|
||||
float CellMinY, CellMaxY;
|
||||
float LineMinY, LineMaxY;
|
||||
float StartPosY; // Copy of CursorPos
|
||||
float StartMaxPosX; // Copy of CursorMaxPos
|
||||
ImVector<ImGuiColumnData> Columns;
|
||||
|
||||
ImGuiColumnsSet() { Clear(); }
|
||||
@ -483,9 +483,9 @@ struct ImGuiColumnsSet
|
||||
Current = 0;
|
||||
Count = 1;
|
||||
MinX = MaxX = 0.0f;
|
||||
LineMinY = LineMaxY = 0.0f;
|
||||
StartPosY = 0.0f;
|
||||
StartMaxPosX = 0.0f;
|
||||
CellMinY = CellMaxY = 0.0f;
|
||||
Columns.clear();
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user