Renamed Window LastFrameDrawn to LastFrameActive, more correct

This commit is contained in:
ocornut
2015-10-18 16:57:10 +01:00
parent 465e6839a4
commit 7a61b7dd57
2 changed files with 13 additions and 13 deletions

View File

@ -599,7 +599,7 @@ struct IMGUI_API ImGuiWindow
ImVector<ImGuiID> IDStack; // ID stack. ID are hashes seeded with the value at the top of the stack
ImRect ClipRect; // = DrawList->clip_rect_stack.back(). Scissoring / clipping rectangle. x1, y1, x2, y2.
ImRect ClippedWindowRect; // = ClipRect just after setup in Begin()
int LastFrameDrawn;
int LastFrameActive;
float ItemWidthDefault;
ImGuiSimpleColumns MenuColumns; // Simplified columns storage for menu items
ImGuiStorage StateStorage;