Internal: Removed unused fields from ImGuiMenuColumns.

This commit is contained in:
omar
2019-03-11 20:14:56 +01:00
parent 6767b0a1b0
commit 65c2220049
2 changed files with 6 additions and 8 deletions

View File

@ -568,10 +568,9 @@ struct ImGuiGroupData
// Simple column measurement, currently used for MenuItem() only.. This is very short-sighted/throw-away code and NOT a generic helper.
struct IMGUI_API ImGuiMenuColumns
{
int Count;
float Spacing;
float Width, NextWidth;
float Pos[4], NextWidths[4];
float Pos[3], NextWidths[3];
ImGuiMenuColumns();
void Update(int count, float spacing, bool clear);